Firebird Database
STDIOImplementation of Anthropic's MCP for Firebird databases.
Implementation of Anthropic's MCP for Firebird databases.
Implementation of Anthropic's MCP (Model Context Protocol) for Firebird databases.
https://github.com/user-attachments/assets/e68e873f-f87b-4afd-874f-157086e223af
MCP Firebird is a server that implements Anthropic's Model Context Protocol (MCP) for Firebird SQL databases. It allows Large Language Models (LLMs) like Claude to access, analyze, and manipulate data in Firebird databases securely and in a controlled manner.
# Global installation npm install -g mcp-firebird # Run the server npx mcp-firebird --database /path/to/database.fdb
For backup/restore operations, you'll need to install the Firebird client tools. See Complete Installation for more details.
For VSCode and GitHub Copilot integration, see VSCode Integration.
Edit the Claude Desktop configuration:
code $env:AppData\Claude\claude_desktop_config.json # Windows code ~/Library/Application\ Support/Claude/claude_desktop_config.json # macOS
Add the MCP Firebird configuration:
{ "mcpServers": { "mcp-firebird": { "command": "npx", "args": [ "mcp-firebird", "--host", "localhost", "--port", "3050", "--database", "C:\\path\\to\\database.fdb", "--user", "SYSDBA", "--password", "masterkey" ], "type": "stdio" } } }
Restart Claude Desktop
# Start with SSE transport npx mcp-firebird --transport-type sse --sse-port 3003 --database /path/to/database.fdb
To install MCP Firebird for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @PuroDelphi/mcpFirebird --client claude
For more detailed information, check the following documents:
If you find MCP Firebird useful for your work or projects, please consider supporting its development through a donation. Your contributions help maintain and improve this tool.
Another great way to support this project is by hiring our AI agents through Asistentes Autónomos. We offer specialized AI assistants for various business needs, helping you automate tasks and improve productivity.
⭐ Donors, sponsors, and clients receive priority support and assistance with issues, feature requests, and implementation guidance. While we strive to help all users, those who support the project financially will receive faster response times and dedicated assistance.
Your support is greatly appreciated and helps ensure the continued development of MCP Firebird!
This project is licensed under the MIT License - see the LICENSE file for details.