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.

コメント

「その他」の他のコンテンツ