Description
ExecuteAutomation Database Server is an MCP server that provides AI assistants with access to SQLite and SQL Server databases. Developed by ExecuteAutomation, this TypeScript implementation enables database schema inspection and SQL query execution through nine core tools including read/write queries, schema management, and data export capabilities. The server features a modular adapter-based architecture that abstracts database-specific implementations, making it particularly useful for data analysis, database management, and business intelligence workflows where AI assistants need direct database interaction without exposing raw credentials.
Installation
git clone https://github.com/executeautomation/mcp-database-server Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"executeautomation-database-server": {
"command": "node",
"args": [
"path/to/server.js"
]
}
}
}