Connect AI clients to your Kioku knowledge base via the Model Context Protocol.
What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI applications call external tools. Kioku runs an MCP server with streamable-http transport at /mcp.
Configuration
Claude Desktop / Claude Code
Add to your MCP client config:
json
{
"mcpServers": {
"Kioku": {
"url": "https://api.kioku.chat/mcp",
"headers": {
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
}
}
}Via CLI
bash
kioku mcpPrints ready-to-paste MCP server config JSON with your current auth token.
Local Development
json
{
"mcpServers": {
"Kioku": {
"url": "http://localhost:9100/mcp",
"headers": {
"Authorization": "Bearer YOUR_JWT_TOKEN"
}
}
}
}How It Works
- AI client (Claude, Cursor) connects to Hivemind's
/mcpendpoint - Authentication via
Authorization: Bearer <token>header - Company and user context extracted from MCP session
_meta - AI client can call any of the registered MCP tools
- Results are returned as structured data the AI can reason about