Skip to content
API Blog

Connect from Claude Code

Most agent setups expose tools but leave every agent to reconstruct company context from scratch. What one agent learns stays trapped in its session.

Lobu maintains one append-only organisational history and projects it into shared, permission-aware entities. ChatGPT, Claude, Claude Code, Codex, Grok, OpenClaw, and custom agents can all use that context through the same MCP endpoint.

Let Claude Code retrieve the team’s decisions and exact source evidence before it changes a repository, then save the verified result for the next agent.

Lobu is open-source but we also have a managed cloud. If you'd like to try, sign in at app.lobu.ai, then point Claude Code at https://app.lobu.ai/mcp as the MCP endpoint. The same URL works for every workspace. Pick one below to scope it to that example.

Paste this into Claude Code and it will install Lobu for you.

Prompt for Claude Code
Connect this Claude Code session to Lobu over MCP: https://lobu.ai/mcp.

Onboard yourself:
- If you have a CLI: run `claude mcp add --transport http lobu https://lobu.ai/mcp`, then open `/mcp` and complete OAuth.
- If you can't touch a terminal: ask the user to run that Claude Code command, open `/mcp`, authenticate Lobu, and restart the session — then continue once connected.

Read the Lobu skill at https://app.lobu.ai/api/skill/lobu, then run search_sdk for the smallest SDK surface needed. Use search_memory/save_memory for durable context; query_sdk for reads, run_sdk for writes. Preview consequential writes and never fabricate a returned URL or identifier.

Connect Claude Code

  1. Run claude mcp add --transport http lobu https://lobu.ai/mcp.
  2. Open /mcp in Claude Code and authenticate Lobu in the browser.
  3. Restart the Claude Code session if the newly connected tools are not listed.
  4. Ask Claude Code to search Lobu memory before it edits the repository.

The HTTP transport supports Lobu’s OAuth flow. For a self-hosted Lobu instance, replace https://lobu.ai/mcp with your own publicly reachable MCP endpoint.

Keep implementation and company context together

Claude Code can retrieve the decision, owner, and source evidence that another agent saved before it edits code. After tests pass, it can append the verified shipped result to the same workspace history.

Related Docs