
Mcp Firebird
@PuroDelphi
About Mcp Firebird
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.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mcp-firebird": {
"command": "npx",
"type": "stdio",
"args": [
"mcp-firebird",
"--host",
"localhost",
"--port",
"3050",
"--database",
"C:\\Databases\\example.fdb",
"--user",
"SYSDBA",
"--password",
"masterkey"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Mcp Firebird?
Mcp Firebird is a server that implements Anthropic's Model Context Protocol (MCP) for Firebird SQL databases. It enables Large Language Models (LLMs) like Claude to securely access, analyze, and manipulate data in Firebird databases.
How to use Mcp Firebird?
Install globally or locally via npm (npm install -g mcp-firebird or npm install mcp-firebird). Configure using environment variables (FIREBIRD_HOST, FIREBIRD_PORT, FIREBIRD_DATABASE, FIREBIRD_USER, FIREBIRD_PASSWORD, FIREBIRD_ROLE) or run directly with npx and command-line arguments (npx mcp-firebird --host localhost --port 3050 --database /path/to/database.fdb --user SYSDBA --password masterkey). For Claude Desktop, add the server configuration to claude_desktop_config.json using absolute paths.
Key features of Mcp Firebird
- List all databases, tables, views, and stored procedures
- Retrieve detailed table schemas and field descriptions
- Execute arbitrary SQL queries with optional parameters
- Four built-in prompts: query-data, analyze-table, optimize-query, generate-sql
- Retrieve field comments from Firebird’s RDB$DESCRIPTION metadata
Use cases of Mcp Firebird
- Query data using natural language instead of writing raw SQL
- Analyze table structures and their purposes with semantic context
- Optimize existing SQL queries for better performance
- Generate SQL from a plain-language description (e.g., “get the 10 best-selling products”)
- Build custom AI assistants that directly interact with Firebird databases
FAQ from Mcp Firebird
What is MCP and how does Mcp Firebird relate to it?
MCP (Model Context Protocol) is a protocol by Anthropic that allows LLMs to access external tools and data. Mcp Firebird implements this protocol specifically for Firebird databases, enabling LLMs like Claude to interact with the database.
What runtime dependencies does Mcp Firebird have?
It requires Node.js and npm to install and run. The server is launched as a child process using npx.
Where does the data live when using Mcp Firebird?
All data remains in the Firebird database specified via the --database argument or FIREBIRD_DATABASE environment variable. The server only reads and writes to that database.
What authentication is supported?
Authentication is handled via a Firebird username and password (FIREBIRD_USER / FIREBIRD_PASSWORD). An optional FIREBIRD_ROLE can also be set.
How does the server transport data?
The server communicates over standard input/output (stdin/stdout) as a child process, following the MCP transport contract. The README examples show usage with ChildProcessTransport in TypeScript and subprocess.Popen in Python.
More Other MCP servers
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
ghidraMCP
LaurieWiredMCP Server for Ghidra
Awesome-MCP-ZH
yzflyMCP 资源精选, MCP指南,Claude MCP,MCP Servers, MCP Clients
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Comments