Skip to content

Integrations

AgenticMind is a streamable-HTTP MCP server. Any client connects with two things:

  • URL: http://localhost:3000/mcp (self-hosted; your https://host/mcp in prod)
  • Header: Authorization: Bearer <token> — your static MCP_API_KEY, or a minted least-privilege token (see the security model)

A generic MCP client config:

{
  "mcpServers": {
    "agenticmind": {
      "type": "http",
      "url": "http://localhost:3000/mcp",
      "headers": { "Authorization": "Bearer ${MCP_API_KEY}" }
    }
  }
}

MCP clients

Step-by-step guides (in the repo's examples/):

Agent frameworks

AgenticMind needs no bespoke adapter — each framework's native MCP client loads its tools:

First run

End-to-end (ingest → ask → read the why-trace): examples/first-run.

The full cookbook lives in examples/.