MCP server for Firebird database
McpFirebird becomes available to MCP clients through the mcpfirebird mcp server. MCP server for Firebird database.
Implementation of Anthropic's MCP (Model Context Protocol) for Firebird databases.
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.
Once connected, the assistant can call these 2 tools directly:
Troubleshooting — The Troubleshooting tool exposed by this serverDonations — If you find MCP Firebird useful for your work or projects, please consider supporting its development through a donation. Your contributions help maintain andThe server is distributed via npm as mcp-firebird, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 8 environment variables: TRANSPORT_TYPE, SSE_PORT, FIREBIRD_PASSWORD, FIREBIRD_API_KEY, DB_HOST, DB_PORT, DB_DATABASE, DB_USER. Keep credentials in your client's env block or a secrets manager rather than committing them.
Database servers turn schema archaeology and ad-hoc reporting into conversation, which is why they tend to be the second or third server people install. McpFirebird sits in that group, and the shape of its toolset — Troubleshooting, Donations — tells you what it is really for. Worth comparing against the other databases servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| Troubleshooting | The Troubleshooting tool exposed by this server. |
| Donations | 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. |
{
"mcpServers": {
"mcpfirebird": {
"command": "npx",
"args": ["-y", "mcp-firebird"],
"env": {
"TRANSPORT_TYPE": "your-value",
"SSE_PORT": "your-value",
"FIREBIRD_PASSWORD": "your-value",
"FIREBIRD_API_KEY": "your-value",
"DB_HOST": "your-value",
"DB_PORT": "your-value",
"DB_DATABASE": "your-value",
"DB_USER": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| TRANSPORT_TYPE | Configuration value read at startup. | Optional |
| SSE_PORT | Configuration value read at startup. | Optional |
| FIREBIRD_PASSWORD | Configuration value read at startup. | Optional |
| FIREBIRD_API_KEY | Credential the server authenticates with. | Yes |
| DB_HOST | Endpoint or connection string the server talks to. | Optional |
| DB_PORT | Configuration value read at startup. | Optional |
| DB_DATABASE | Configuration value read at startup. | Optional |
| DB_USER | Configuration value read at startup. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.