Documentation
Get started with Ogham MCP, explore the tools API, or configure embedding providers.
Bring Your Own Database
JetBrains AI Assistant
JetBrains AI Assistant added MCP client support in 2026.1. That brings every IDE in the JetBrains family – IntelliJ IDEA, PyCharm, GoLand, WebStorm, Rider, RubyMine, RustRover, Android Studio – into the same memory loop as Claude Code, Cursor, and the rest. Five minutes of setup; your assistant remembers across IDEs and across projects.
Prerequisites #
- A JetBrains IDE on 2026.1 or newer with AI Assistant enabled.
- Ogham installed and reachable from your shell (
ogham --versionshould work). If you haven’t runogham inityet, start with the setup wizard.
Configure the MCP server #
JetBrains AI Assistant has a UI for this, no manual JSON file editing required.
Microsoft Agent Framework
Microsoft Agent Framework GA’d 1.0 in Q1 2026 as the merged successor to Semantic Kernel and AutoGen. It ships in Python and .NET with pluggable memory: built-in backends include Foundry Agent Service Memory, Mem0, Redis, and Neo4j. It also speaks MCP natively, which means Ogham can plug in today with zero glue code.
This page covers Shape A: registering Ogham as an MCP tool. The agent decides when to call it – store, search, compile, walk the graph – the same way it would call any other tool. No subclassing, no provider class.
Ogham + Google SCION
What is SCION? #
SCION is Google Cloud’s multi-agent orchestration testbed. It runs LLM agents (Gemini CLI, Claude Code, OpenCode, Codex) in isolated Docker or Kubernetes containers, each with their own identity, credentials, and workspace.
The problem: agents in SCION are isolated by design. Agent A doesn’t know what Agent B learned. Every agent starts from a blank slate, and when it stops, its knowledge stays locked in its container.