Integrations¶
AgenticMind is a streamable-HTTP MCP server. Any client connects with two things:
- URL:
http://localhost:3000/mcp(self-hosted; yourhttps://host/mcpin prod) - Header:
Authorization: Bearer <token>— your staticMCP_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/):
- Claude Code — CLI or
.mcp.json - Cursor —
~/.cursor/mcp.json - Claude Desktop — via
mcp-remote
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/.