Inquisitor MCP Server

Optimal-path problem solving for AI agents: web search, code tracing, Newton-method investigation.

Remote serverstreamable-httpPython

What is the Inquisitor MCP server?

Inquisitor MCP server exists for a simple reason — assistants are far more useful when they can act on Inquisitor directly instead of describing what you should do. Optimal-path problem solving for AI agents: web search, code tracing, Newton-method investigation.

What you get

The method is not invented here — it is assembled from primary sources: Newton's Analysis→Synthesis skeleton, hardened with the scientific method's own defenses against wrong assumptions (falsification, strong inference, competing-hypotheses analysis, anti-fixation reframes, pre-mortems) and constrained by engineering discipline (NASA/JPL's Power of Ten, surgical-change guidelines, the minimalism ladder). Every source is cited in Foundations.

What the assistant can call

Once Inquisitor is connected, these are the calls the assistant has available:

  • inquisitor_search — Multi-backend web search (DuckDuckGo free/keyless, Brave, SearXNG) with content extraction (HTML + PDF)
  • inquisitor_analyze — Project overview: languages, frameworks, tests, deps, git history
  • inquisitor_trace — Symbol tracing: definition, callers, callees with file:line refs
  • inquisitor_verify — Completeness check: every phase recorded? evidence cited? (semantic validation — contradictions, DEFINE satisfaction — stays with the agent)
  • inquisitor_scaffold — Minimal project scaffolding with researched best practices

Setting it up

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

Configuration and credentials

You will need 2 environment variables: BRAVE_API_KEY, SEARXNG_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.

Choosing this one

This sits in the search and retrieval group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Inquisitor's toolset — inquisitor_search, inquisitor_analyze, inquisitor_trace and 2 more — is a fair guide to whether it matches your workflow. It is maintained by 1111111111111111111114oLvT2; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Before you rely on it

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

Available tools

ToolWhat it does
inquisitor_searchMulti-backend web search (DuckDuckGo free/keyless, Brave, SearXNG) with content extraction (HTML + PDF)
inquisitor_analyzeProject overview: languages, frameworks, tests, deps, git history
inquisitor_traceSymbol tracing: definition, callers, callees with file:line refs
inquisitor_verifyCompleteness check: every phase recorded? evidence cited? (semantic validation — contradictions, DEFINE satisfaction — stays with the agent)
inquisitor_scaffoldMinimal project scaffolding with researched best practices

How to install the Inquisitor MCP server

{
  "mcpServers": {
    "inquisitor": {
      "command": "npx",
      "args": ["-y", "skills"],
      "env": {
        "BRAVE_API_KEY": "your-value",
        "SEARXNG_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
BRAVE_API_KEYCredential the server authenticates with.Yes
SEARXNG_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Inquisitor to inquisitor search.
  • Use Inquisitor to inquisitor analyze.
  • Use Inquisitor to inquisitor trace.

Frequently asked questions

It connects Inquisitor to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (inquisitor_search, inquisitor_analyze, inquisitor_trace, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Inquisitor directly.