Groundcheck MCP Server

Verify factual claims against live sources: verdict, confidence score, and citations over MCP.

Remote serverstreamable-httpPython

What is the Groundcheck MCP server?

Verify factual claims against live sources: verdict, confidence score, and citations over MCP. Exposed over MCP by the groundcheck mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Groundcheck verifies a factual claim against live sources and returns a verdict, a confidence score, and citations. Any agent — Claude Code, Cursor, your own — can call it mid-task, before it states a fact it isn't sure of.

  • retrieves — sources first, then asks only the narrow, evidence-anchored question — does
  • refuses on conflict — and saturates confidence, so disagreement flows to unverified
  • returns citations — , so the verdict is checkable, not taken on the model's word

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.

Configuration

You will need 7 environment variables: GROQ_API_KEY, GROUNDCHECK_ENGINE_URL, GROUNDCHECK_SEARCH_URL, GROUNDCHECK_SEARCH_KEY, GROUNDCHECK_ROUTER_PATH, GROUNDCHECK_ENGINE_HOST, GROUNDCHECK_REPO_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.

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 groundcheck mcp server does with a few real requests.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by beepboop2025; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

How to install the Groundcheck MCP server

{
  "mcpServers": {
    "groundcheck": {
      "command": "npx",
      "args": ["-y", "groundcheck-mcp"],
      "env": {
        "GROQ_API_KEY": "your-value",
        "GROUNDCHECK_ENGINE_URL": "your-value",
        "GROUNDCHECK_SEARCH_URL": "your-value",
        "GROUNDCHECK_SEARCH_KEY": "your-value",
        "GROUNDCHECK_ROUTER_PATH": "your-value",
        "GROUNDCHECK_ENGINE_HOST": "your-value",
        "GROUNDCHECK_REPO_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GROQ_API_KEYCredential the server authenticates with.Yes
GROUNDCHECK_ENGINE_URLEndpoint or connection string the server talks to.Yes
GROUNDCHECK_SEARCH_URLEndpoint or connection string the server talks to.Yes
GROUNDCHECK_SEARCH_KEYCredential the server authenticates with.Yes
GROUNDCHECK_ROUTER_PATHFilesystem location the server is allowed to use.Optional
GROUNDCHECK_ENGINE_HOSTEndpoint or connection string the server talks to.Optional
GROUNDCHECK_REPO_URLEndpoint or connection string the server talks to.Yes

Frequently asked questions

It connects Groundcheck to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Groundcheck directly.