Skip to main content

MCP Integration

KnowledgeFlowDB provides an MCP (Model Context Protocol) server with 150+ tools for AI agent integration. Agents can query, search, write, and analyze data in KnowledgeFlowDB through the standardized MCP protocol.

What is MCP?

The Model Context Protocol is an open standard for connecting AI models to data sources and tools. KnowledgeFlowDB's MCP server lets any MCP-compatible AI agent (Claude, GPT, custom agents) interact with your knowledge graph.

MCP Marketplace

The MCP Marketplace provides a discovery and management interface for MCP servers, including KnowledgeFlowDB's 150+ tools.

Features:

  • Browse and search available MCP servers
  • Enable/disable servers for your wallet
  • View tool documentation and schemas
  • Integrated wallet authentication and x402 payment

Connecting to the MCP Server

MCP Server URL

https://kfdb-mcp-server-2dbp4scmrq-uc.a.run.app/mcp

Tool Profiles

Tools are organized into profiles to manage context window usage:

ProfileToolsUse Case
minimal40Quick queries (default)
development70Active development
research85Research cycles, A/B experiments
full150No filtering — all tools available

Claude Desktop Configuration

Add to your Claude Desktop claude_desktop_config.json:

{
"mcpServers": {
"knowledgeflow-db": {
"command": "npx",
"args": ["-y", "@nickydata/mcp-client"],
"env": {
"KFDB_WALLET_ADDRESS": "0xYOUR_WALLET_ADDRESS"
}
}
}
}

Tool Categories

See MCP Tools for the complete tool reference organized by category.

Authentication

MCP tool calls use the same wallet-based authentication as the REST API:

  • Simple: X-Wallet-Address header
  • Production: Bearer JWT from challenge/verify flow
  • Payments: x402 protocol for paid tool calls ($0.0005/call)

See Wallet Authentication for details.