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.1.8 --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.1.8"],
      "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.1.8"],
      "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.1.8"
    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.1.8 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.1.8.tar.gz (101.1 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.1.8-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for ogm_mcp_skills-0.1.8.tar.gz
Algorithm Hash digest
SHA256 23ac1f42be012422d1cf37fe6ebbc8f472c59bd4cfc954aa80dbeeff72fbe838
MD5 e9e3145a04e6b4e9426cc55ce99f618a
BLAKE2b-256 0f298ac043af3c71805e6b6c52d79bbdd29e015ae408ff094f09ec29e60fc5b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ogm_mcp_skills-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 11715acda6bc2008bc220c14fad5ec44c971a810cb14b483a5d431ab27cb76d4
MD5 0088d2addd3d751a1cef123aeb3d871b
BLAKE2b-256 2c6d1d5fb3035b2c985e74bc009f9057b707b05a5d6df2465f7bebba049418cd

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