Skip to main content

MCP tools for Memgraph graphs created by memgraph-ingester

Project description

memgraph-ingester-mcp

Visitors GitHub commits GitHub last commit PyPI release Python versions License

memgraph-ingester-mcp exposes safe, high-level MCP tools for Memgraph graphs produced by memgraph-ingester. It keeps agents out of long Cypher instruction blocks for normal work while still offering a project-scoped read-only Cypher escape hatch for unusual lookups.

The package is intended to be published to PyPI as memgraph-ingester-mcp under the ousatov-ua account.

Tools

Code graph tools:

  • server_status: graph inventory, memory counts, and vector index status.
  • code_orientation: compact package/type/call overview; pass sections to keep it focused.
  • code_quality_stats: graph-wide code quality and quantity metrics; defaults to non-test code and a 5-row first page.
  • code_hot_paths: compact hot-path candidates from size and call graph metrics; defaults to 5 owner/name rows per selected section.
  • code_search: CodeChunk vector search for broad discovery; defaults to 5 non-test, deduped, primary/file-role hits and omits text/source keys unless requested; supports compact filters.
  • code_text_search: ranked lexical search over indexed chunk text/path/source ids for concrete-term discovery; defaults to primary/file-role hits and returns termMatches.
  • code_discovery_context: semantic discovery plus bounded exact/caller/callee/file context in one compact response.
  • code_flow_context: compact workflow discovery with semantic/lexical anchors, likely file outlines, related paths, and bounded nearby call edges; pass detail="full" for wider expansion.
  • code_file_context: deterministic file outlines with language, definition/chunk counts, RAG role counts, and top symbols.
  • code_lookup_type: exact class/interface/annotation lookup; test code and member expansion are opt-in.
  • code_lookup_methods: exact method lookup with source ranges; defaults to 10 compact owner/name/path rows.
  • code_lookup_field: exact field/constant lookup by FQN or name fragment; defaults to compact owner/name/FQN/path rows.
  • code_lookup_file: indexed file/resource lookup by path fragment with definition and RAG chunk counts.
  • code_callers, code_callees: compact, paginated, non-test, range-first call graph lookups; default first page is 10 rows.
  • code_method_context: bundled exact method lookup plus caller and callee context; use instead of separate lookup/callers/callees calls while tracing one target.
  • code_impact: refactor blast-radius lookup for matching method signatures; returns target methods plus depth-1/depth-2 callers, test flags, and file/package boundary flags.
  • code_operation_hot_paths: operation-sink hot paths for performance work, grouping methods that call APIs like run/query/write/read/save/delete; accepts owner/path filters for subsystem-focused audits.
  • code_resource_risk_scan: compact heuristic scan for risky query/config/resource patterns such as unbounded graph traversals, repeated subqueries, and per-row writes.
  • code_test_context: failing-test/CI triage from a test name or class fragment to tests, test files, and production callees.
  • code_hierarchy: class ancestry, children, interfaces, and interface implementors.

Memory tools:

  • memory_orientation: rules plus open findings, tasks, questions, and risks; compact=true omits body fields.
  • memory_schema: allowed memory types, upsert fields, controlled values, and CodeRef targets.
  • memory_search: MemoryChunk vector search with index-only hit metadata.
  • memory_get: canonical memory node plus resolved CodeRefs.
  • memory_upsert: create/update Decision, ADR, Rule, Context, Finding, Task, Risk, Question, or Idea.
  • memory_update_status: lifecycle status update.
  • delete_memory: delete one memory node plus its derived chunk and orphan CodeRefs.
  • memory_link_code_ref: link memory to a resolved CodeRef target.
  • memory_refresh_chunk, memory_refresh_embeddings: maintain derived memory RAG data.

Fallback:

  • raw_read_cypher: read-only, project-scoped Cypher for edge cases.

Configuration

Use namespaced environment variables so this server does not collide with generic shell settings:

Variable Default Purpose
MEMGRAPH_INGESTER_MCP_BOLT_URI bolt://127.0.0.1:7687 Memgraph Bolt URI
MEMGRAPH_INGESTER_MCP_USERNAME unset Optional username
MEMGRAPH_INGESTER_MCP_PASSWORD unset Optional password
MEMGRAPH_INGESTER_MCP_DATABASE unset Optional database name
MEMGRAPH_INGESTER_MCP_PROJECT unset Default project name
MEMGRAPH_INGESTER_MCP_QUERY_TIMEOUT_SECONDS 30 Query timeout
MEMGRAPH_INGESTER_MCP_READ_ONLY false Disable write tools when true
MEMGRAPH_INGESTER_MCP_CODE_EMBEDDING_INDEX code_chunk_embedding_v2 Base CodeChunk vector index name configured in memgraph-ingester
MEMGRAPH_INGESTER_MCP_MEMORY_EMBEDDING_INDEX memory_chunk_embedding_v2 Base MemoryChunk vector index name configured in memgraph-ingester
MEMGRAPH_INGESTER_MCP_EMBEDDING_MODEL default Metadata stamped on refreshed chunks
MEMGRAPH_INGESTER_MCP_EMBEDDING_DIMENSIONS 384 Expected memory embedding dimension

Run Locally

uv sync --dev
uv run memgraph-ingester-mcp

Run tests:

uv run ruff check .
uv run pytest

Build the package:

uv build --no-sources

Client Setup

Replace my-project with the project name used when running memgraph-ingester.

Codex

Add this to ~/.codex/config.toml:

[mcp_servers.memgraphIngester]
command = "uvx"
args = ["memgraph-ingester-mcp"]
startup_timeout_ms = 20_000

[mcp_servers.memgraphIngester.env]
MEMGRAPH_INGESTER_MCP_BOLT_URI = "bolt://127.0.0.1:7687"
MEMGRAPH_INGESTER_MCP_PROJECT = "my-project"

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "memgraphIngester": {
      "type": "stdio",
      "command": "uvx",
      "args": ["memgraph-ingester-mcp"],
      "env": {
        "MEMGRAPH_INGESTER_MCP_BOLT_URI": "bolt://127.0.0.1:7687",
        "MEMGRAPH_INGESTER_MCP_PROJECT": "my-project"
      }
    }
  }
}

Claude Code can also add the same stdio server directly:

claude mcp add-json memgraphIngester \
  '{"type":"stdio","command":"uvx","args":["memgraph-ingester-mcp"],"env":{"MEMGRAPH_INGESTER_MCP_BOLT_URI":"bolt://127.0.0.1:7687","MEMGRAPH_INGESTER_MCP_PROJECT":"my-project"}}'

GitHub Copilot in VS Code

Create .vscode/mcp.json in the workspace or add the server to your user MCP configuration:

{
  "servers": {
    "memgraphIngester": {
      "type": "stdio",
      "command": "uvx",
      "args": ["memgraph-ingester-mcp"],
      "env": {
        "MEMGRAPH_INGESTER_MCP_BOLT_URI": "bolt://127.0.0.1:7687",
        "MEMGRAPH_INGESTER_MCP_PROJECT": "my-project"
      }
    }
  }
}

Gemini CLI

Add this to Gemini CLI settings.json:

{
  "mcpServers": {
    "memgraphIngester": {
      "command": "uvx",
      "args": ["memgraph-ingester-mcp"],
      "env": {
        "MEMGRAPH_INGESTER_MCP_BOLT_URI": "bolt://127.0.0.1:7687",
        "MEMGRAPH_INGESTER_MCP_PROJECT": "my-project"
      },
      "trust": false
    }
  }
}

Agent Guidance

Prefer the dedicated tools over raw_read_cypher. Use RAG search tools only for broad discovery, then follow up with exact lookup tools before making claims or edits. The default first pages are small on purpose: use meta.hasMore and meta.nextSkip to paginate instead of raising limits preemptively. For performance work, start with code_hot_paths; add code_quality_stats only when you need graph-wide baselines. Compact method/search/call-graph rows are range-first and omit full signatures; request non-compact output only when signatures or modifiers are needed. Use code_method_context when tracing one method so one MCP call replaces lookup plus callers plus callees. Use code_flow_context for workflow-level concept discovery when you need likely files and a small first-hop call map in one response; pass detail="full" only when the compact map is too narrow. Use code_file_context when file paths are known and you need a compact indexed outline before opening source. Use code_discovery_context for small anchor-focused concept work before separate RAG/refine loops, and use code_text_search when concrete terms are likely present; lexical rows are ranked by matched-term count. RAG searches default to primary/file chunks; pass include_secondary=true or explicit rag_roles only when searching constants, record components, accessors, or synthetic/module chunks. Most code tools exclude src/test/ by default; pass include_tests=true only for test coverage or test-specific questions. Use code_impact first for method signature changes and blast-radius review; it includes tests by default and flags file/package boundaries. Use code_operation_hot_paths alongside code_hot_paths for performance/write-path audits; pass owner_fragment or path_contains when the question names a subsystem such as writer, storage, parser, or adapter. Add code_resource_risk_scan when performance, query complexity, or resource files are in scope; its rows are heuristic leads and should be source-verified before claiming a bug. Use code_test_context first for failing test or CI triage. Use code_lookup_field for constants and member variables, and code_lookup_file for indexed source, resource, template, and Cypher path discovery before falling back to text search. Use memory_orientation(compact=true) for status checks and memory write tools for task lifecycle changes and CodeRef links so derived MemoryChunks stay refreshable.

Project details


Download files

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

Source Distribution

memgraph_ingester_mcp-0.5.8.tar.gz (96.7 kB view details)

Uploaded Source

Built Distribution

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

memgraph_ingester_mcp-0.5.8-py3-none-any.whl (43.8 kB view details)

Uploaded Python 3

File details

Details for the file memgraph_ingester_mcp-0.5.8.tar.gz.

File metadata

  • Download URL: memgraph_ingester_mcp-0.5.8.tar.gz
  • Upload date:
  • Size: 96.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for memgraph_ingester_mcp-0.5.8.tar.gz
Algorithm Hash digest
SHA256 a56c044c0ef136170315e8a99d4e10db565cd3840d4c61a64b2f4623d2f55ed1
MD5 1f17f3d2747a7d0ca137e8b139da119a
BLAKE2b-256 951efa4b2075235494de1b8b5c027f8017e4145c2f63b01ae1d4f3f7ce79ec8a

See more details on using hashes here.

File details

Details for the file memgraph_ingester_mcp-0.5.8-py3-none-any.whl.

File metadata

  • Download URL: memgraph_ingester_mcp-0.5.8-py3-none-any.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for memgraph_ingester_mcp-0.5.8-py3-none-any.whl
Algorithm Hash digest
SHA256 bafc4bc1580397e613a8984fb81309bf22edfb5a0e57d520473d38f7c41a8a3f
MD5 37a1438a01f171eebf3f6c2337cceb2c
BLAKE2b-256 ee7621b29a187c98edcb8c35e55f1c0ff9ab73feef5828b632b07de72e4dc383

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 Pingdom Monitoring Sentry Error logging StatusPage Status page