https://mcp.honcho.dev
You’ll need an API key from app.honcho.dev to use the hosted MCP server.
Client Setup
Pick your client below and add the config. After adding, restart the client fully for changes to take effect.Claude Desktop
- macOS
- Windows
Edit
~/Library/Application Support/Claude/claude_desktop_config.json:Claude Code
Codex
Add to~/.codex/config.toml:
Codex only supports stdio transport, so it uses
mcp-remote as a bridge. Restart both the Codex CLI and VS Code extension after editing.Cursor
Cursor supports MCP servers natively via HTTP. Add to your global config at~/.cursor/mcp.json or per-project at .cursor/mcp.json:
Windsurf
Add to~/.codeium/windsurf/mcp_config.json:
Windsurf uses
serverUrl instead of url.VS Code (Copilot Chat)
Add to your workspace.vscode/mcp.json:
Cmd+Shift+P → “Preferences: Open User Settings (JSON)”):
Cline
Cline supports remote MCP servers natively. Open Cline’s MCP settings at:- macOS
- Windows
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonZed
Add to~/.config/zed/settings.json:
Zed uses
context_servers instead of mcpServers. Native HTTP support requires Zed v0.214.5 or later.Optional Configuration
You can customize the assistant name and workspace ID by adding extra headers. Both are optional.| Header | Default | Description |
|---|---|---|
Authorization | required | Bearer hch-your-key-here |
X-Honcho-User-Name | required | What the AI should call you |
X-Honcho-Assistant-Name | "Assistant" | Name for the AI peer |
X-Honcho-Workspace-ID | "default" | Isolate memory per project |
Available Tools
The recommended flow for a standard conversation usescreate_session + add_messages_to_session + chat. See the full instructions for a complete walkthrough.
Workspace — inspect_workspace, list_workspaces, search, get_metadata, set_metadata
Peers — create_peer, list_peers, chat, get_peer_card, set_peer_card, get_peer_context, get_representation
Sessions — create_session, list_sessions, delete_session, clone_session, add_peers_to_session, remove_peers_from_session, get_session_peers, inspect_session, add_messages_to_session, get_session_messages, get_session_message, get_session_context
Conclusions — list_conclusions, query_conclusions, create_conclusions, delete_conclusion
System — schedule_dream, get_queue_status
Verify It Works
After setup, try asking your AI assistant:“What do you know about me?”On the first conversation there won’t be much — but after a few exchanges, Honcho’s background reasoning will start building a representation of you. Ask again after a couple of conversations and you’ll see the difference.
Troubleshooting
| Problem | Fix |
|---|---|
| Tools don’t show up | Make sure you fully restarted the client after adding the config. |
| Authorization errors | Check your API key at app.honcho.dev. It should start with hch-. |
npx not found | Install Node.js — your AI assistant can help with this. |
| ”No personalization insights found” | Normal for new users. Honcho needs a few conversations to build context. |
| Connection timeouts | Check that https://mcp.honcho.dev is accessible from your network. |