Multi-Database SQL MCP Server

Multi-Database SQL MCP Server

Enables interaction with SQLite, MySQL, PostgreSQL, and SQL Server databases through tools for connection management, parameterized query execution, and schema inspection.

Category
Visit Server

README

Multi-Database SQL MCP Server

A Model Context Protocol (MCP) server that provides SQL database connectivity for multiple database types including SQLite, MySQL, PostgreSQL, and SQL Server.

Features

  • Multi-database support: SQLite, MySQL, PostgreSQL, and SQL Server
  • Connection management: Create, manage, and disconnect multiple database connections
  • Query execution: Execute SQL queries with parameterized support
  • Schema inspection: Get table and column information
  • Type-safe: Built with TypeScript for better development experience

Installation

npm install

Development

# Build the project
npm run build

šŸ”Œ MCP Server Integration

To integrate this toolset into your MCP-based system, modify your configuration like this:

{
  "mcpServers": {
    "weather": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/PARENT/FOLDER/project/build/index.js"
      ]
    }
  }
}

To integrate this toolset into your MCP-based system, update your configuration to run the Playwright server using a custom npm script:

{
  "mcpServers": {
    "playwright": {
      "command": "npm",
      "args": [
        "run",
        "start:mcp"
      ]
    }
  }
}

āœ… Make sure your package.json includes a start:mcp script that points to the correct TypeScript entry file via ts-node.

Example package.json snippet:

"scripts": {
  "start:mcp": "ts-node src/index.ts"
}

This allows you to skip the manual npm run build step during development, making it quicker to iterate and test MCP tools directly from TypeScript source.


Usage

The server supports the following tools:

1. connect_database

Connect to a database with the specified configuration.

Parameters:

  • connectionId (string, required): Unique identifier for the connection
  • type (string, required): Database type - 'sqlite', 'mysql', 'postgresql', or 'mssql'
  • database (string, required): Database name
  • host (string, optional): Database host (not required for SQLite)
  • port (number, optional): Database port (not required for SQLite)
  • username (string, optional): Database username (not required for SQLite)
  • password (string, optional): Database password (not required for SQLite)
  • filename (string, optional): SQLite database file path (required for SQLite)
  • ssl (boolean, optional): Enable SSL connection
  • trustServerCertificate (boolean, optional): Trust server certificate (MSSQL only)

2. execute_query

Execute a SQL query on a connected database.

Parameters:

  • connectionId (string, required): Connection identifier
  • query (string, required): SQL query to execute
  • parameters (array, optional): Query parameters for parameterized queries

3. get_table_schema

Get schema information for tables.

Parameters:

  • connectionId (string, required): Connection identifier
  • tableName (string, optional): Specific table name (if not provided, returns all tables)

4. list_connections

List all active database connections.

Parameters: None

5. disconnect_database

Disconnect from a database.

Parameters:

  • connectionId (string, required): Connection identifier to disconnect

Database-Specific Notes

SQLite

  • Requires filename parameter pointing to the database file
  • No host, port, username, or password required
  • File will be created if it doesn't exist

MySQL

  • Default port: 3306
  • Supports SSL connections
  • Uses mysql2 driver for Promise-based operations

PostgreSQL

  • Default port: 5432
  • Supports SSL connections with rejectUnauthorized: false for development
  • Uses pg driver

SQL Server (MSSQL)

  • Default port: 1433
  • Supports SSL encryption
  • Use trustServerCertificate: true for self-signed certificates
  • Uses mssql driver

Example Connections

SQLite

{
  "connectionId": "my-sqlite",
  "type": "sqlite",
  "database": "myapp",
  "filename": "./data/myapp.db"
}

MySQL

{
  "connectionId": "my-mysql",
  "type": "mysql",
  "host": "localhost",
  "port": 3306,
  "database": "myapp",
  "username": "root",
  "password": "password",
  "ssl": false
}

PostgreSQL

{
  "connectionId": "my-postgres",
  "type": "postgresql",
  "host": "localhost",
  "port": 5432,
  "database": "myapp",
  "username": "postgres",
  "password": "password",
  "ssl": false
}

SQL Server

{
  "connectionId": "my-mssql",
  "type": "mssql",
  "host": "localhost",
  "port": 1433,
  "database": "myapp",
  "username": "sa",
  "password": "YourStrong@Passw0rd",
  "ssl": true,
  "trustServerCertificate": true
}

Error Handling

The server includes comprehensive error handling for:

  • Database connection failures
  • Query execution errors
  • Invalid connection IDs
  • Unsupported database types
  • Schema inspection errors

All errors are returned with descriptive messages to help with debugging.

Project Structure

src/
ā”œā”€ā”€ index.ts           # Main server entry point
ā”œā”€ā”€ DatabaseManager.ts # Database connection and query management
ā”œā”€ā”€ handlers.ts        # Tool call handlers
ā”œā”€ā”€ tools.ts          # Tool definitions
└── types.ts          # TypeScript type definitions

Requirements

  • Node.js 18+
  • TypeScript 5+
  • Database drivers for your specific database types

License

MIT

šŸ¤ Contributing

We welcome contributions! Please see our CONTRIBUTING.md for guidelines.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured