Runbooks the agent actually reads
Deployment steps, coding standards, incident playbooks — governed pages instead of a stale wiki.
Anthropic · Coding agents
Put your engineering runbooks, API conventions, and architecture decisions where Claude Code can read them before it writes a line. One command adds the registry; a .mcp.json checked into the repo shares it with the whole team.
Why pair them
Deployment steps, coding standards, incident playbooks — governed pages instead of a stale wiki.
Commit .mcp.json and every engineer’s Claude Code session gets the same page set.
Give the agent write access and it can append to a page after a fix. A reviewer approves before it publishes.
Setup
You need two values from an agent page in Memrio: the workspace MCP URL and an API key. Examples use https://memrio.ai/api/mcp/acme — swap in yours.
Run this once from the repo root. Use --scope project to write a .mcp.json the team can commit, or leave it out to keep the server local to you.
claude mcp add --transport http memrio https://memrio.ai/api/mcp/acme \
--header "Authorization: Bearer mr_live_8f3a…" \
--scope projectReference the key through an environment variable so the secret never lands in git.
{
"mcpServers": {
"memrio": {
"type": "http",
"url": "https://memrio.ai/api/mcp/acme",
"headers": {
"Authorization": "Bearer ${CONTEXT_REGISTRY_KEY}"
}
}
}
}Add a line to CLAUDE.md so the agent browses the registry before answering questions about your systems.
## Company knowledge
Before answering anything about our company, products, or policies, call `browse` on the memrio server, open the pages whose use-when instructions match, and answer only from those pages. If nothing applies, say so.Run /mcp inside Claude Code. memrio should show as connected with the browse, search_pages, and get_page tools.
Try it
“Check the registry for our deployment runbook and walk me through a hotfix release.”
FAQ
Other integrations