Devin CLI
1
Start agentmemory
2
Wire MCP and hooks
3
Verify
devin, /hooks shows the loaded hooks and their source file.What connect installs
Devin CLI also reads Claude Code’s config locations. If you have already run
connect claude-code, agentmemory appears in devin mcp list without any Devin-specific wiring — but the Claude hook manifest’s capitalized tool matchers (Edit|Write|Read) never match Devin’s lowercase tool names, so run connect devin --with-hooks for capture that actually fires.Devin CLI plugin
The bundled plugin registers all 17 skills as/agentmemory:<skill> slash commands plus the MCP server:
devin plugins info agentmemory lists the installed skills. The manifest lives at plugin/.devin-plugin/plugin.json.
Devin cloud sessions
Cloud sessions run on Cognition’s machines, solocalhost:3111 is unreachable. Host agentmemory first (see Deployment), then add it as a custom MCP:
- Settings → Connections → MCP servers → Add a custom MCP.
- Transport STDIO, command
npx, args-y @agentmemory/mcp@latest. - Environment variables:
AGENTMEMORY_URLpointing at your deployment,AGENTMEMORY_SECRETfor the bearer token (store it in Devin Secrets rather than inline). - Save, then Test listing tools — all 54 tools should appear.
@latest in the args: a bare npx -y @agentmemory/mcp can serve a stale cached copy that exposes only the 7-tool local fallback set.