Skip to main content
Glama

MCP Firebird

smithery.yaml2.13 kB
# Smithery MCP Server Configuration for Firebird # Documentation: https://smithery.ai/docs/build/project-config/smithery-yaml # Runtime type: Container for compatibility with native dependencies # This provides universal compatibility with both Smithery and standard Docker runtime: "container" # Docker build configuration build: dockerfile: "Dockerfile" dockerBuildPath: "." # Environment variables env: NODE_ENV: "production" LOG_LEVEL: "info" # Start command configuration for HTTP-based MCP server startCommand: type: "http" # Configuration schema using JSON Schema # Smithery passes these as query parameters to the /mcp endpoint configSchema: type: "object" required: ["database"] properties: host: type: "string" title: "Database Host" description: "Hostname or IP address of the Firebird database server" default: "localhost" port: type: "number" title: "Database Port" description: "Port number for the Firebird database" default: 3050 database: type: "string" title: "Database Path" description: "Absolute path to the Firebird database file (e.g., /path/to/database.fdb)" user: type: "string" title: "Database User" description: "Database username for authentication" default: "SYSDBA" password: type: "string" title: "Database Password" description: "Database password for authentication" default: "masterkey" useNativeDriver: type: "boolean" title: "Use Native Driver" description: "Enable native driver for wire encryption support" default: false logLevel: type: "string" title: "Log Level" description: "Logging verbosity level" enum: ["debug", "info", "warn", "error"] default: "info" # Example configuration for testing exampleConfig: host: "192.168.1.5" port: 3050 database: "/path/to/EMPLOYEE.FDB" user: "SYSDBA" password: "masterkey" useNativeDriver: false logLevel: "info"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PuroDelphi/mcpFirebird'

If you have feedback or need assistance with the MCP directory API, please join our Discord server