MCP Firebird:Firebird 数据库的 MCP 协议实现
为 Firebird 数据库实现 Anthropic 的 MCP 协议,支持 SQL 查询、模式分析和数据库管理。
快速入门
全局安装
通过 npm 全局安装 mcp-firebird: npm install -g mcp-firebird
启动服务
运行以下命令启动服务器: npx mcp-firebird --database /path/to/database.fdb
配置 Claude Desktop
- 编辑配置文件: Windows: code $env:AppData\Claude\claude_desktop_config.json macOS: code ~/Library/Application\ Support/Claude/claude_desktop_config.json
- 添加以下内容: { "mcpServers": { "mcp-firebird": { "command": "npx", "args": [ "mcp-firebird", "--host", "localhost", "--port", "3050", "--database", "C:\path\to\database.fdb", "--user", "SYSDBA", "--password", "masterkey" ], "type": "stdio" } } }
- 重启 Claude Desktop。
更多文档参考:完整安装。