Skip to main content

ogm-mcp-skills

MCP stdio server and AI Agent Skills from Claude Code, OpenCode, Antigravity, and Hermes to OpenGraphMemory and the Codebase Knowledge Graph.

The MCP server uses authenticated OpenGraphMemory REST APIs only. It is stateless: no local database, session mapping, direct PostgreSQL, Neo4j, or object-store access.

Status

Alpha. PyPI releases are published from GitHub Actions on v* tags. Source install is also supported for development.

Tools

  • ogm_health
  • ogm_list_datasets
  • ogm_search_entities
  • ogm_get_entity
  • ogm_get_neighbors
  • ogm_find_path
  • ogm_get_subgraph
  • ogm_get_graph
  • ogm_get_evidence
  • ogm_get_relation_evidence
  • ogm_upload_document
  • ogm_memory_list_episodes
  • ogm_memory_get_episode
  • ogm_memory_search
  • ogm_memory_create_episode
  • ogm_memory_append_attempt
  • ogm_memory_record_outcome
  • ogm_memory_feedback_episode
  • ogm_memory_supersede_episode
  • ogm_memory_feedback_pattern
  • ogm_memory_supersede_pattern
  • ogm_search_code_symbols
  • ogm_get_code_call_graph
  • ogm_get_code_chunks
  • ogm_recall_code_memory
  • ogm_record_code_fix
  • ogm_sync_code_file

Read tools inspect PostgreSQL-authoritative graph and Agent Memory data. Agent Memory results are historical claims: inspect recorded evidence and verifiers before relying on them. personal-safe permits reviewed document upload, additive Agent Memory records, and code sync; memory-curator additionally permits memory feedback and supersession. No delete, admin, project-create, relation-review, analytics-refresh, semantic-retrieval, or automatic conversation-ingestion tools exist.

Install

Install from PyPI with uv:

uv tool install ogm-mcp-skills

Or run without installing:

uvx ogm-mcp-skills==0.2.0 --version

pipx also works:

pipx install ogm-mcp-skills

For source development:

git clone https://github.com/ardiannurcahya/ogm-mcp-skills.git "$HOME/src/ogm-mcp-skills"
cd "$HOME/src/ogm-mcp-skills"
uv sync --locked

Configure

Set these environment variables before starting your MCP client:

OGM_BASE_URL=http://localhost:8000
OGM_API_KEY=<project-api-key>
OGM_PROJECT_ID=<project-uuid>
OGM_PERMISSION_PROFILE=read-only

Use OGM_PERMISSION_PROFILE=read-only for graph and Agent Memory retrieval. Use OGM_PERMISSION_PROFILE=personal-safe for reviewed uploads and additive Agent Memory records. Use memory-curator only for reviewed feedback and supersession.

Optional upload roots:

OGM_UPLOAD_ROOTS=/absolute/path/to/allowed/docs

More options: Configuration.

MCP Client Setup

Claude Code

Add MCP server config to project .mcp.json:

{
  "mcpServers": {
    "ogm": {
      "command": "uvx",
      "args": ["ogm-mcp-skills==0.2.0"],
      "env": {
        "OGM_BASE_URL": "${OGM_BASE_URL}",
        "OGM_API_KEY": "${OGM_API_KEY}",
        "OGM_PROJECT_ID": "${OGM_PROJECT_ID}",
        "OGM_PERMISSION_PROFILE": "${OGM_PERMISSION_PROFILE}"
      }
    }
  }
}

Verify:

claude mcp list

OpenCode

Add MCP server config to opencode.json or opencode.jsonc:

{
  "mcp": {
    "ogm": {
      "type": "local",
      "command": ["uvx", "ogm-mcp-skills==0.2.0"],
      "environment": {
        "OGM_BASE_URL": "{env:OGM_BASE_URL}",
        "OGM_API_KEY": "{env:OGM_API_KEY}",
        "OGM_PROJECT_ID": "{env:OGM_PROJECT_ID}",
        "OGM_PERMISSION_PROFILE": "{env:OGM_PERMISSION_PROFILE}"
      },
      "enabled": true
    }
  }
}

Restart OpenCode after editing config.

Hermes

Add server under mcp_servers:

mcp_servers:
  ogm:
    command: "uvx"
    args:
      - "ogm-mcp-skills==0.2.0"
    env:
      OGM_BASE_URL: "${OGM_BASE_URL}"
      OGM_API_KEY: "${OGM_API_KEY}"
      OGM_PROJECT_ID: "${OGM_PROJECT_ID}"
      OGM_PERMISSION_PROFILE: "${OGM_PERMISSION_PROFILE}"
    enabled: true

Verify:

hermes mcp test ogm

For source development, replace uvx ogm-mcp-skills==0.2.0 with:

uv run --project /absolute/path/ogm-mcp-skills ogm-mcp-skills

MCP uses stdio. Diagnostics go to stderr.

Use

After MCP server is connected, ask your agent to use OGM tools. Start with health and dataset discovery:

Call ogm_health, then ogm_list_datasets.

Search entities in one dataset:

{"dataset_id":"dataset-id","q":"OpenGraphMemory","limit":10}

Inspect graph context with ogm_get_entity, ogm_get_neighbors, ogm_get_subgraph, ogm_get_graph, or ogm_find_path. Use ogm_get_relation_evidence or ogm_get_evidence before making evidence-backed claims.

Retrieve relevant operational experience with ogm_memory_search. Create an episode, append attempts, and record a verified outcome only when profile is personal-safe. Feedback and supersession require memory-curator.

Upload documents only when profile is personal-safe and file path is under OGM_UPLOAD_ROOTS:

Call ogm_upload_document with an approved local file path and dataset/project context.

More Docs

Performance & Token Economics

The MCP server acts as an efficient bridge, converting broad file exploration queries into compact, structured graph and memory payloads:

Workload Raw LLM Context Dump OGM MCP Structured Payload Measured Reduction
Codebase Symbol Lookup ~40k–80k tokens (reading entire folders) ~500–1.5k tokens (ogm_get_code_call_graph) ~90%–95%
Known Bug / Solution Recall ~60k–150k tokens (3–5 turn trial & error) ~1.5k–3k tokens (ogm_recall_code_memory) ~75%–90%
Single-File Codebase Sync Full repo re-index ~10ms delta AST sync (ogm_sync_code_file) Instant

[!NOTE] Token savings apply to repeated patterns, call-graph explorations, and known incident remediations. Unprecedented architectural problems still require exploratory reasoning, but newly verified solutions are immediately preserved for zero-overhead future retrieval.

Validation

uv sync --dev --locked
uv run ruff format --check .
uv run ruff check .
uv run mypy src
uv run pytest -q
uv build

Security

Use project-scoped keys. Keep .env and keys outside upload roots. Start read-only; use personal-safe only for reviewed writes; reserve memory-curator for memory governance. See security.

License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ogm_mcp_skills-0.2.0.tar.gz (101.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ogm_mcp_skills-0.2.0-py3-none-any.whl (26.1 kB view details)

Uploaded Python 3

File details

Details for the file ogm_mcp_skills-0.2.0.tar.gz.

File metadata

  • Download URL: ogm_mcp_skills-0.2.0.tar.gz
  • Upload date:
  • Size: 101.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.15

File hashes

Hashes for ogm_mcp_skills-0.2.0.tar.gz
Algorithm Hash digest
SHA256 dbc9401b7d6fc8ab3e917f79c9599f4486f429a190b61128ce59e757569dbbe2
MD5 512081e668cd4ce1b4b84b0ed9cc1f94
BLAKE2b-256 a3fa1dac304dcb5d50ded8bfaeb774c0f0e299ea1106cc5be4fa51bfbc728947

See more details on using hashes here.

File details

Details for the file ogm_mcp_skills-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: ogm_mcp_skills-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.15

File hashes

Hashes for ogm_mcp_skills-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4b22f48104d82f2f6b2ee3af85c7c98c94c6666b7ac16826f980f72294257ce1
MD5 83e9d0e1d8d01591082ff77e305ceb9b
BLAKE2b-256 4562ef47ee14834782e12c4e40efed8888271d92ccf7a0aa64f892a5c0c4db8b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page