drio
Open app

Node.js JDBC MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Node.js JDBC MCP Server is a JDBC server built on Node.js that supports MySQL, Oracle, and SQLite databases.

To use the server, clone the project repository, install the dependencies, configure the environment variables, and start the server using npm commands.

  • Supports multiple database types (MySQL, Oracle, SQLite) - Provides API endpoints for health checks and executing SQL queries - Allows for development mode with hot reloading
  1. Connecting to and querying different types of databases in a unified manner.
  2. Building applications that require database interactions without worrying about the underlying database technology.
  3. Facilitating database management tasks through a simple API.

Add to your AI client

Use these steps to connect Node.js JDBC MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "node-jdbc-mcp-server-darksheep404": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "node-jdbc-mcp-server-darksheep404": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "node-jdbc-mcp-server-darksheep404": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "node-jdbc-mcp-server-darksheep404": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "node-jdbc-mcp-server-darksheep404": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "node-jdbc-mcp-server-darksheep404": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-node-jdbc-mcp-server-darksheep404"
      ]
    }
  }
}

FAQ

What databases are supported?

The server supports MySQL, Oracle, and SQLite databases.

How do I start the server?

You can start the server by running `npm start` after installing the dependencies.

Is there a development mode available?

Yes, you can run the server in development mode with hot reloading using `npm run dev`.