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.2 --version
### Automated 1-Command Setup

Automatically copy `SKILL.md` and merge MCP server configuration into your installed agent harness (Antigravity, Gemini CLI, Claude Desktop, Cursor, etc.):

```bash
ogm-mcp-skills setup

Or run directly without installing:

uvx ogm-mcp-skills setup

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.2"],
      "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.2"],
      "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.2"
    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.1 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.2.tar.gz (104.5 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.2-py3-none-any.whl (32.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ogm_mcp_skills-0.2.2.tar.gz
  • Upload date:
  • Size: 104.5 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.2.2.tar.gz
Algorithm Hash digest
SHA256 2e6f525c10e9c2098af9c46e05f51205422058e8919ef03d1e785ce1c6ca8897
MD5 5f0ab800f2ec50ac9fbade9e5d535d84
BLAKE2b-256 0a8f4e75f42b9ddc9764a378492dcc0362d2b062c98cb33bc292983cc1591027

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ogm_mcp_skills-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 32.3 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.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7bd7c4fb1f7dfd05a7815298d052cc93db87c475f68f1668909cf383c01be007
MD5 a276ecef26e03605a6557d845fc300e2
BLAKE2b-256 7771541d5b9c5e457002ce041e22b0736c5b6c8da06329988b81d1a18e951deb

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