drio
Open app

MCP Database Server

Source

A MCP (model context protocol) server that gives the LLM access to and knowledge about databases

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server-database-jdbc is a Model Context Protocol (MCP) server that provides Large Language Models (LLMs) with access to and knowledge about databases.

To use this server, set it up in your environment and connect your LLM to it. You can then query databases through the server to retrieve and manipulate data.

  • Provides LLMs with direct access to databases. - Facilitates data retrieval and manipulation through a standardized protocol. - Supports various database types and queries.
  1. Enabling LLMs to answer questions based on real-time database information.
  2. Assisting in data analysis and reporting tasks using LLMs.
  3. Integrating LLMs with existing database systems for enhanced functionality.

Add to your AI client

Use these steps to connect MCP Database 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": {
    "mcp-server-database-jdbc-delei": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-database-jdbc-delei"
      ]
    }
  }
}

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": {
    "mcp-server-database-jdbc-delei": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-database-jdbc-delei"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What databases are supported?

The server supports various databases, including SQL and NoSQL databases, depending on the configuration.

Is there a license for using this server?

Yes, it is licensed under the Apache-2.0 license, allowing for both personal and commercial use.

How can I contribute to the project?

Contributions are welcome! You can submit issues or pull requests on the GitHub repository.