Firebird MCP Server
@stagsz
About Firebird MCP Server
A Model Context Protocol (MCP) server for Firebird databases. Enables read-only SQL queries and schema exploration.
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"firebird-mcp-server": {
"command": "docker",
"args": [
"build",
"-t",
"mcp/firebird",
"-f",
"src/firebird/Dockerfile",
"."
]
}
}
}Tools
1Execute read-only SQL queries against the connected database
Overview
What is Firebird MCP Server?
A Model Context Protocol server that provides read-only access to Firebird databases. It enables LLMs to inspect database schemas and execute read-only SQL queries.
How to use Firebird MCP Server?
Configure it in Claude Desktop’s claude_desktop_config.json using either Docker (mcp/firebird image) or NPX (@modelcontextprotocol/server-firebird), supplying a Firebird connection URL like firebird://host:port/database.
Key features of Firebird MCP Server
- Execute read-only SQL queries via the
querytool. - Access table schema information as JSON resources.
- Automatically discover schema from database metadata.
- Connect to any Firebird database using a connection URL.
Use cases of Firebird MCP Server
- LLMs inspecting database structure before generating queries.
- Performing read‑only data analysis through an AI assistant.
- Integrating Firebird database insights into conversational interfaces.
FAQ from Firebird MCP Server
Is the server read-only?
Yes, all queries are executed within a READ ONLY transaction.
How do I connect to a Firebird database?
Provide a connection URL in the format firebird://user:password@host:port/database. When using Docker on macOS, use host.docker.internal if the server runs on the host.
What dependencies are required?
The server can be run via Docker (no local install) or NPX (requires Node.js). No other dependencies are mentioned.
Where does the data live?
The server connects to a remote Firebird database specified in the connection URL; no local data is stored.
What transports and authentication are supported?
It integrates with Claude Desktop via the MCP protocol using command and args configuration. Authentication is handled by credentials (username/password) embedded in the connection URL.
Frequently asked questions
Is the server read-only?
Yes, all queries are executed within a READ ONLY transaction.
How do I connect to a Firebird database?
Provide a connection URL in the format `firebird://user:password@host:port/database`. When using Docker on macOS, use `host.docker.internal` if the server runs on the host.
What dependencies are required?
The server can be run via Docker (no local install) or NPX (requires Node.js). No other dependencies are mentioned.
Where does the data live?
The server connects to a remote Firebird database specified in the connection URL; no local data is stored.
What transports and authentication are supported?
It integrates with Claude Desktop via the MCP protocol using command and args configuration. Authentication is handled by credentials (username/password) embedded in the connection URL.
Basic information
More Other MCP servers
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Nginx UI
0xJackyYet another WebUI for Nginx
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
Inbox Zero AI
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
Comments