MCP Catalogs
Home

mcp-database-server

by executeautomation·351·Score 47

MCP Database Server connects SQLite, SQL Server, PostgreSQL and MySQL databases to Claude.

databasedeveloper-tools
96
Forks
21
Open issues
9 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server enables Claude to interact with multiple database systems through a unified interface. It provides tools for executing SQL queries, managing database schema, exporting data, and storing business insights. The server supports both direct usage via NPM package and local development configurations.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Data analysis and reporting by querying databases through Claude
you:Database schema management and modification using Claude's natural language interface
you:Data export and integration with other Claude-based workflows
you:Which databases are supported?
you:How do I authenticate with AWS RDS?

When to choose this

Choose this MCP server when you need unified access to multiple database types (SQLite, SQL Server, PostgreSQL, MySQL) through Claude without writing custom integrations.

When NOT to choose this

Avoid if you need specialized database features not covered by basic SQL operations or require enterprise-level security controls beyond what's documented.

Tools this server exposes

10 tools extracted from the README
  • read_query

    Execute SELECT queries to read data

  • write_query

    Execute INSERT, UPDATE, or DELETE queries

  • create_table

    Create new tables in the database

  • alter_table

    Modify existing table schema

  • drop_table

    Remove a table from the database

  • list_tables

    Get a list of all tables

  • describe_table

    View schema information for a table

  • export_query

    Export query results as CSV/JSON

  • append_insight

    Add a business insight to memo

  • list_insights

    List all business insights

Comparable tools

db-mcpsqlai-mcppostgres-mcpneon-mcp

Installation

Installation

  1. Install the package globally:
npm install -g @executeautomation/database-server
  1. Configure Claude Desktop with this example:
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@executeautomation/database-server",
        "/path/to/your/database.db"
      ]
    }
  }
}

FAQ

Which databases are supported?
SQLite, SQL Server, PostgreSQL, and MySQL databases are supported.
How do I authenticate with AWS RDS?
Use the --mysql --aws-iam-auth flags with appropriate AWS credentials configured in your environment.

Compare mcp-database-server with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.