Connect Claude Code
Claude Code is Anthropic’s command-line coding assistant. Once connected to Mereon, it can look up your company’s processes, policies, and owners while it works, and cite where each answer came from.
-
Get a token
Section titled “Get a token”Create a personal access token in Profile → API Tokens in the Mereon app, if you have not already. Keep it handy.
-
Add Mereon as an MCP server
Section titled “Add Mereon as an MCP server”Run this in your terminal, replacing the token with your own:
Terminal window claude mcp add --transport http mereon https://api.mereon.ai/v1/mcp \--header "Authorization: Bearer mrn_..."That registers a server named
mereon. Claude Code now has Mereon’s search and lookup tools available. -
Confirm the connection
Section titled “Confirm the connection”In Claude Code, run:
Terminal window claude mcp listYou should see
mereonlisted and connected. Ask it something like “search Mereon for our refund policy” to see it call a tool.
Teach it to use Mereon
Section titled “Teach it to use Mereon”Tools are only useful if the assistant knows when to reach for them. Drop this
into a CLAUDE.md file in your repository so Claude Code consults Mereon before
answering questions about how your business works:
## Mereon knowledge base
This organization's business processes, policies, and institutional knowledgelive in Mereon. When you need to know how the business does something (aprocess, a policy, who owns an area), use the `search_mereon` tool first, then`get_topic` / `get_item` to read details and `get_duties` to find owners.Cite the `url` field of anything you rely on.What it can do once connected
Section titled “What it can do once connected”Claude Code gains the full set of Mereon tools: hybrid search, reading a topic or item in full, pulling the text of a source document or transcript, finding who owns a process, and listing data-quality issues, content, and lessons. Everything is read-only and scoped to what your token’s owner can see.
Removing the connection
Section titled “Removing the connection”claude mcp remove mereonTo cut off access entirely, revoke the token in Profile → API Tokens. That stops every tool using it, not just Claude Code.