Firebird MCP Server
@stagsz
关于 Firebird MCP Server
A Model Context Protocol (MCP) server for Firebird databases. Enables read-only SQL queries and schema exploration.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"firebird-mcp-server": {
"command": "docker",
"args": [
"build",
"-t",
"mcp/firebird",
"-f",
"src/firebird/Dockerfile",
"."
]
}
}
}工具
1Execute read-only SQL queries against the connected database
概览
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.
其他 分类下的更多 MCP 服务器
Nginx UI
0xJackyYet another WebUI for Nginx
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale

EverArt
modelcontextprotocolModel Context Protocol Servers
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
评论