mcp-database-server
by executeautomation·★ 351·Score 47
MCP Database Server connects SQLite, SQL Server, PostgreSQL and MySQL databases to Claude.
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:
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 READMEread_queryExecute SELECT queries to read data
write_queryExecute INSERT, UPDATE, or DELETE queries
create_tableCreate new tables in the database
alter_tableModify existing table schema
drop_tableRemove a table from the database
list_tablesGet a list of all tables
describe_tableView schema information for a table
export_queryExport query results as CSV/JSON
append_insightAdd a business insight to memo
list_insightsList all business insights
Comparable tools
Installation
Installation
- Install the package globally:
npm install -g @executeautomation/database-server- 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
Last updated · Auto-generated from public README + GitHub signals.