MCP.so
Sign In
Servers

MCP Database Server

@cuongtl1992

The MCP Server support your LLMs integrate with SQL Database (SQLite, SQL Server, Postgres SQL)

Overview

What is MCP Database Server?

An MCP (Model Context Protocol) server for connecting to and working with SQLite, PostgreSQL, Microsoft SQL Server, and MongoDB databases. It allows AI assistants to interact with these databases through standardised tools and resources.

How to use MCP Database Server?

Install globally via npm install -g mcp-dbs or run directly with npx mcp-dbs. The server runs in SSE mode by default on port 3001; use --stdio for standard I/O mode. Configure database connections through environment variables or the connect-database tool.

Key features of MCP Database Server

  • Connect to and disconnect from multiple database types
  • Execute SQL or MongoDB queries that return results
  • Execute updates (INSERT, UPDATE, DELETE) without results
  • Retrieve full database or table schema
  • List all tables in a connected database

Use cases of MCP Database Server

  • Query databases conversationally through an AI assistant
  • Explore and understand unfamiliar database schemas
  • Perform data entry, updates, and deletions via natural language
  • Integrate database access into Claude Desktop workflows

FAQ from MCP Database Server

What databases does MCP Database Server support?

It supports SQLite, PostgreSQL, Microsoft SQL Server, and MongoDB.

How do I install MCP Database Server?

Install it globally with npm install -g mcp-dbs, or use it directly with npx mcp-dbs.

What transport modes are available?

Two modes: SSE (Server-Sent Events) on port 3001 by default, and STDIO mode via the --stdio flag.

How do I configure a database connection?

Set environment variables (e.g., MCP_POSTGRES_HOST, MCP_MONGODB_URI) before starting the server, or use the connect-database tool with a connection ID and database type.

Can I use MCP Database Server with Claude Desktop?

Yes. Add an entry to Claude's mcpServers configuration using the node command, the path to the server’s CLI file, the --stdio flag, and the required environment variables for your database.

More from Databases