A Model Context Protocol server that provides read-only access to Firebird databases. This server enables LLMs to inspect database schemas and execute read-only queries.
sql
(string): The SQL query to executeThe server provides schema information for each table in the database:
firebird://<host>/<table>/schema
)
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
firebird://SYSDBA:masterkey@host:3051/test_db
{
"mcpServers": {
"firebird": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/firebird",
"firebird://host.docker.internal:3051/test_db"
]
}
}
}
{
"mcpServers": {
"firebird": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-firebird",
"firebird://localhost:3051/test_db"
]
}
}
}
Replace /test_db
with your database name.
Required environment variables for the Firebird container:
DATABASE
: Path to the database file (e.g., /firebird/data/test_db.fdb)FIREBIRD_USER
: Database user (default: SYSDBA)FIREBIRD_PASSWORD
: Database password (default: masterkey)EnableLegacyClientAuth
: Enable legacy client authentication (default: "true")EnableWireCrypt
: Enable wire encryption (default: "false")CreateDb
: Allow database creation (default: "true")Docker:
docker build -t mcp/firebird -f src/firebird/Dockerfile .
Common issues:
Container startup failures:
Database initialization:
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
{
"mcpServers": {
"firebird": {
"env": {},
"args": [
"run",
"-i",
"--rm",
"mcp/firebird",
"firebird://host.docker.internal:3051/test_db"
],
"command": "docker"
}
}
}
Seamless access to top MCP servers powering the future of AI integration.