{"library":"mcp-firebird","title":"Firebird Model Context Protocol (MCP) Server","description":"mcp-firebird is a server implementation of Anthropic's Model Context Protocol (MCP) specifically designed for Firebird SQL databases. It enables AI agents, such as Claude Desktop, to securely and efficiently interact with Firebird databases for various tasks including schema inspection, executing read-only or write SQL queries, analyzing table structures, and generating SQL from natural language descriptions. The package, currently at version 2.6.0, provides a robust interface to unlock valuable data in Firebird systems for AI-driven applications. It supports Server-Sent Events (SSE) for real-time data streaming and offers enhanced command-line parameter handling and environment variable configuration. Developed by PuroDelphi, it is actively maintained with ongoing feature enhancements and performance optimizations, making it a comprehensive toolkit for integrating Firebird with modern AI workflows. Key differentiators include its dedicated focus and comprehensive features for Firebird within the MCP ecosystem, offering more extensive management and analysis tools compared to simpler, older implementations.","language":"javascript","status":"active","last_verified":"Wed Apr 22","install":{"commands":["npm install mcp-firebird"],"cli":{"name":"mcp-firebird","version":null}},"imports":["npx mcp-firebird","Via environment variables or command-line arguments"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { spawn } from 'child_process';\n\nconst databasePath = process.env.FIREBIRD_DATABASE_PATH ?? '/firebird/data/test_db.fdb';\nconst user = process.env.FIREBIRD_USER ?? 'SYSDBA';\nconst password = process.env.FIREBIRD_PASSWORD ?? 'masterkey';\nconst host = process.env.FIREBIRD_HOST ?? 'localhost';\nconst port = process.env.FIREBIRD_PORT ?? '3050';\n\n// Example of running mcp-firebird via npx with environment variables and CLI arguments\nconst mcpFirebirdProcess = spawn('npx', [\n  'mcp-firebird',\n  '--database', databasePath,\n  '--user', user,\n  '--password', password,\n  '--host', host,\n  '--port', port,\n  '--transport', 'sse', // Use Server-Sent Events transport\n  '--sse-port', '3003' // Specify SSE port\n], {\n  stdio: 'inherit',\n  env: { ...process.env, \n    LOG_LEVEL: 'debug' // Example of an additional environment variable\n  }\n});\n\nmcpFirebirdProcess.on('error', (err) => {\n  console.error('Failed to start mcp-firebird process:', err);\n});\n\nmcpFirebirdProcess.on('exit', (code) => {\n  console.log(`mcp-firebird process exited with code ${code}`);\n});\n\nconsole.log('MCP Firebird server started. Connect your AI client (e.g., Claude Desktop) to this server.');\nconsole.log(`Database: ${databasePath}, User: ${user}, Host: ${host}, Port: ${port}`);\nconsole.log('SSE Transport active on port 3003.');","lang":"typescript","description":"Demonstrates how to run the mcp-firebird server using `npx`, configuring it via both command-line arguments and environment variables for connecting to a Firebird database and enabling SSE transport.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}