MCP.so
Sign In

🛠️ MCP Server with C# + Firebird

@BoscoBecker

About 🛠️ MCP Server with C# + Firebird

MCP Server com C# + Firebird

Basic information

Category

Other

Runtime

c#

Transports

stdio

Publisher

BoscoBecker

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "MCPServerCSharp": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/inspector",
        "dotnet",
        "run"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is 🛠️ MCP Server with C# + Firebird?

This project is an MCP (Model Context Protocol) server written in C# that provides tools for executing dynamic queries against a Firebird database. It supports filtering, record limits, and uses .NET 9 with FirebirdSql.Data.FirebirdClient.

How to use 🛠️ MCP Server with C# + Firebird?

Create an appsettings.json file with a FirebirdDb connection string pointing to your .fdb file. Install dependencies using dotnet add package ModelContextProtocol --prerelease. Run the server with npx @modelcontextprotocol/inspector dotnet run.

Key features of 🛠️ MCP Server with C# + Firebird

  • Single MCP tool: ListTable returns records from a Firebird table.
  • Conditional SQL filtering via the filter parameter.
  • Record limit enforced using Firebird’s FIRST clause.
  • Built with .NET 9 and the official Firebird ADO.NET client.
  • Configuration via appsettings.json for database connection.

Use cases of 🛠️ MCP Server with C# + Firebird

  • List all active customers from a CUSTOMERS table.
  • Query a Firebird table with a custom WHERE clause.
  • Retrieve a limited number of rows for previews or pagination.
  • Integrate Firebird data into AI workflows using the Model Context Protocol.

FAQ from 🛠️ MCP Server with C# + Firebird

What tools does the server expose?

Only one tool: ListTable. It accepts a table name, an optional filter string, and an optional record limit.

How do I configure the Firebird connection?

Set the ConnectionStrings:FirebirdDb value in appsettings.json with the database file path, user, password, dialect, and charset.

What runtime is required?

.NET 9 and the NuGet package ModelContextProtocol (prerelease). The server also uses FirebirdSql.Data.FirebirdClient.

Can I use the server without a Firebird database?

No—the only implemented tool queries a Firebird database. A valid .fdb file and connection string are required.

Does the server support authentication or transport configuration?

The README does not mention any authentication or custom transport options. It uses the default MCP inspector transport.

Comments

More Other MCP servers