SchemaBrain MCP Server

The trust and intelligence layer between AI agents and your database.

Remote serverstreamable-httpGo

What is the SchemaBrain MCP server?

The trust and intelligence layer between AI agents and your database. The schemabrain mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

What it actually does

Its toolset

Everything the assistant can do here goes through one of these:

Configuration

You will need 2 environment variables: ANTHROPIC_API_KEY, DATABASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. SchemaBrain's toolset — Zed, Continue, Goal and 3 more — is a fair guide to whether it matches your workflow. It is maintained by Arun-kc; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against SchemaBrain's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the schemabrain mcp server does with a few real requests.

Available tools

ToolWhat it does
Zedfull walkthrough at [docs/setup/zed.md](docs/setup/zed.md)
Continuepaste into ~/.continue/config.json
GoalWhere to go
ClientSetup guide
Cursor[/setup/cursor](docs/setup/cursor.md)
Windsurf[/setup/windsurf](docs/setup/windsurf.md)

How to install the SchemaBrain MCP server

{
  "mcpServers": {
    "schemabrain": {
      "command": "uvx",
      "args": ["schemabrain"],
      "env": {
        "ANTHROPIC_API_KEY": "your-value",
        "DATABASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
DATABASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use SchemaBrain to Zed.
  • Use SchemaBrain to Continue.
  • Use SchemaBrain to Goal.

Frequently asked questions

It connects SchemaBrain to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Zed, Continue, Goal, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with SchemaBrain directly.