MCP.so
登录

Mcp Firebird

@PuroDelphi

关于 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.

基本信息

分类

其他

传输方式

stdio

发布者

PuroDelphi

提交者

Puro Delphi

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp-firebird": {
      "command": "npx",
      "type": "stdio",
      "args": [
        "mcp-firebird",
        "--host",
        "localhost",
        "--port",
        "3050",
        "--database",
        "C:\\Databases\\example.fdb",
        "--user",
        "SYSDBA",
        "--password",
        "masterkey"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

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.

评论

其他 分类下的更多 MCP 服务器