MCP.so
ログイン

Firebird MCP Server

@stagsz

Firebird MCP Server について

A Model Context Protocol (MCP) server for Firebird databases. Enables read-only SQL queries and schema exploration.

基本情報

カテゴリ

その他

トランスポート

stdio

公開者

stagsz

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "firebird-mcp-server": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "mcp/firebird",
        "-f",
        "src/firebird/Dockerfile",
        "."
      ]
    }
  }
}

ツール

1

Execute 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 query tool.
  • 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.

コメント

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