Claude Code + AGNT
Anthropic's agent-native coding CLI with first-class MCP support.
Official sourceWhat it is
Claude Code is Anthropic's official terminal-native coding agent. It runs as a CLI that understands your project, edits files, runs commands, and uses tools — with MCP as the default mechanism for exposing external capabilities to the agent.
The abstraction that matters: skills (reusable prompt + instruction bundles), MCP clients (plug any MCP server into the agent), hooks (automation on tool calls), and a clean permissions model so the agent asks before doing anything irreversible.
Where AGNT fits
- AGNT exposes user memory, wiki, knowledge graph, and venue search as an MCP server at `/mcp/sse`. Point Claude Code at it and your coding agent inherits the full AGNT context layer as native tools — no wrapper code, no schema translation.
- AGNT skills become Claude Code skills (and vice versa). The soul loader's 17-key structural memory forwards cleanly into a Claude Code skill bundle, so a skill you author once runs in both surfaces without rewriting.
- Fleet adapters in AGNT speak the same narrow interface Claude Code uses for tool calling. If you already run AGNT's `claude_local` adapter, you can point a Claude Code session at an AGNT fleet and share the same model gateway, budget cap, and backpressure semaphore.
Integration recipes
Wire AGNT memory into Claude Code as an MCP server
Config Claude Code's MCP client against `/mcp/sse`, add an API key, and get structured memory tools in the agent.
Forward Claude Code skills into AGNT's soul loader
Register a Claude Code skill as an AGNT soul-loader module — versioned, cached, swappable.
Build an MCP server exposing AGNT wiki + graph
Ship a custom MCP server wrapping AGNT's wiki + graph endpoints, callable from any Claude Code session.
Prompts & playbooks
Latest signals
Wiring AGNT memory into Claude Code through MCP
Claude Code ships with first-class MCP support. AGNT exposes its user memory + wiki + graph as an MCP server at /mcp/sse. Point Claude Code at it and your coding agent inherits the AGNT context layer for free — diet, preferences, venue graph, session state, all queryable as tools.
Claude Code skills forwarded into AGNT's soul loader
Claude Code skills are reusable prompt + instruction bundles. AGNT's soul loader is the per-agent structural memory layer (17 keys). The two compose cleanly: skills become first-class modules that soul loader reads as structural memory, versioned and cacheable.