Skip to main content
Glama

Intelligraph-mini

Local-first MCP graph intelligence server — same RRF hybrid search, multi-hop traversal, source snippets, and rationale nodes as the full Intelligraph platform, but without Docker, web UI, SSO, or chat. Just tools for your AI agent.

Need the full platform? Intelligraph adds Docker, React web UI, chat completions, SSO/PKCE, closed-network deployment, and tuning controls.

Quick start

pip install intelligraph-mini

# In your project directory:
intelligraph-mini --repo-dir .

# Or with MCP config (.mcp.json):
{
  "mcpServers": {
    "intelligraph-mini": {
      "command": "intelligraph-mini",
      "args": ["--repo-dir", "."]
    }
  }
}

First run builds graphify + CRG indexes (~60s). Subsequent runs load cached (~2s). The bundled all-MiniLM-L6-v2 model (87MB) works fully offline — no API calls, no network.

Related MCP server: corpus-rag

Tools

Tool

Description

search(query)

RRF hybrid search (FTS5 + semantic embeddings). Finds symbols by meaning.

node(name, depth=2)

Multi-hop subgraph + source code snippets + rationale notes.

path(from, to)

Shortest path between two symbols in the call graph.

impact(name)

Blast-radius analysis over CALLS/IMPORTS_FROM edges.

local_files(paths)

Read source files from disk.

How it works

  1. Build (first run): graphify update . + code-review-graph buildgraphify-out/graph.json + .code-review-graph/graph.db

  2. Snippets: reads source files, stores ~500 char snippets per node in node_snippets table

  3. Search: RRF (Reciprocal Rank Fusion, k=30) blends FTS5 keyword ranking with embedding cosine similarity. Adaptive 50% cutoff returns only genuinely relevant files.

  4. Traversal: BFS with token budget over cached adjacency (scales to 140k edges)

  5. Rationale: surfaces #NOTE/#WHY nodes from graphify's rationale extraction

Requirements

  • Python 3.10+

  • graphifyy and code-review-graph CLIs on PATH (installed automatically as dependencies)

License

MIT

Available Tools

5 tools
impactA

Complete blast radius of changing a symbol. Exhaustive traversal of ALL edge types. Returns every affected file with symbols to check. Use before refactoring. Files not listed do not depend on the target.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It states that traversal is exhaustive, that ALL edge types are considered, and provides a negative guarantee about files not listed. This adds meaningful context about the tool's behavior and scope, though it could mention potential performance or output size implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded: the first sentence states the core purpose, followed by scope, output, usage, and a key guarantee. Each of the five sentences adds essential information with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with no output schema and no annotations, the description covers the essential points: what it does, when to use it, what it returns, and a completeness guarantee. It could be slightly more explicit about the exact input format or result details, but it is largely complete for its complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema only defines 'name' as a string with no description, and schema coverage is 0%. The description compensates by implying that 'name' refers to the symbol being changed (e.g., 'changing a symbol' and 'the target'). While not explicitly stating 'the name parameter is the symbol', the context makes it clear, adding meaning beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: computing the blast radius of changing a symbol, with specific behavior (exhaustive traversal of ALL edge types) and output (every affected file with symbols to check). This clearly distinguishes it from sibling tools like search, node, path, and local_files, which are not about impact analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use the tool ('Use before refactoring') and includes a useful note about what files are not listed ('Files not listed do not depend on the target'). However, it does not mention when not to use it or name any alternative tools, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

local_filesA

Read full source files from disk. EXPENSIVE. Prefer built-in Read with line ranges from search/node results instead. Use this only when you need a whole file that search/node didn't cover.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathsYes
max_bytesNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It explicitly flags the operation as 'EXPENSIVE' and clarifies it returns full files, not line ranges. While it doesn't cover error handling or permissions, the key behavioral traits (read-only, cost, full-file scope) are disclosed meaningfully.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each serving a distinct purpose: stating the core action, warning about cost, and providing usage guidance. It is concise, front-loaded, and free of filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter tool with no output schema, the description covers the core purpose, cost, and alternatives. It could detail path semantics or error scenarios, but given the simplicity, it is sufficiently complete for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain the 'paths' or 'max_bytes' parameters. Although the parameter names are somewhat self-explanatory and the schema includes a default for max_bytes, the description adds no additional meaning or guidance beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads full source files from disk, using the specific verb 'Read' and the resource 'full source files'. It also distinguishes itself from alternatives by noting it's for whole files only, contrasting with line-range reads from search/node results.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: 'Prefer built-in Read with line ranges from search/node results instead' and 'Use this only when you need a whole file that search/node didn't cover.' This clearly specifies when to use and when not to use the tool, naming an alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

nodeA

Get a symbol's connections (callers, callees, imports) with file:line ranges. Use AFTER search. Then use built-in Read with those line ranges to get implementation details. Replaces reading whole files — read only the specific line ranges shown.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
depthNo

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It reveals a key behavioral trait: the tool returns line ranges specifically to enable targeted reading, avoiding reading whole files. However, it does not explicitly state whether the operation is read-only, nor does it describe error behavior or depth parameter effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose and then usage. No unnecessary words, every clause adds information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description provides a clear workflow and the primary return type (file:line ranges), but lacks an explicit return structure and does not explain the 'depth' parameter. Given the lack of annotations and output schema, the description is not fully complete for an agent to invoke correctly without guessing depth semantics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero description coverage, so the description must explain parameters. It implicitly covers 'name' via 'a symbol', but completely omits 'depth' (an integer with default 2). The description adds zero meaning to the depth parameter, which could represent traversal depth or recursion level, leaving the agent to guess.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: retrieving a symbol's connections (callers, callees, imports) with file:line ranges. It uses a specific verb 'Get' and a specific resource 'symbol's connections', and it distinguishes itself from sibling search and impact by focusing on dependency relationships rather than discovery or impact analysis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to use AFTER search and then use built-in Read with the returned line ranges. It also positions itself as an alternative to reading whole files, which provides clear usage context. However, it doesn't explicitly state when not to use it, but the conditional 'after search' gives guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pathC

Trace the shortest path between two symbols in the codebase graph.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYes
fromYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of disclosing behavior. It only states the core action but does not explain what happens when no path exists, whether the path is returned as a list of symbols or edges, or any error conditions. This leaves significant behavioral ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence with no redundant words. It immediately communicates the action and resource, making it easy to parse and understand.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity, the description still lacks essential details for correct invocation and interpretation: the return value format, error handling for disconnected nodes, and input format requirements. With no output schema or annotations, the description alone is insufficient for complete understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has no descriptions for 'from' and 'to', and schema description coverage is 0%. The description adds only that these are 'symbols', but does not clarify expected formats (e.g., fully qualified names, file paths), constraints, or definitions. This provides minimal value beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Trace') and a distinct resource ('shortest path between two symbols in the codebase graph'). This differentiates it from sibling tools like 'search' and 'node', which focus on other aspects of the graph.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description does not mention any prerequisites, exclusions, or scenarios where another tool would be more appropriate, leaving the agent to infer usage solely from the tool's name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedimpact
    • First observedlocal_files
    • First observednode
    • First observedpath
    • First observedsearch

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a distinct role: search locates symbols, node shows connections, path finds shortest routes, impact assesses blast radius, and local_files reads source. No two tools overlap in purpose.

Naming Consistency3/5

Names are mostly single-word and lowercase, but mix verbs (search) and nouns (node, path, impact, local_files). The underscore in local_files is inconsistent with the other names, though still readable.

Tool Count5/5

Five tools is well-scoped for a mini code-graph intelligence server, covering search, exploration, pathfinding, impact analysis, and file reading without redundancy.

Completeness5/5

The set covers the full analysis workflow: locate, explore, trace, assess, and read. Instructions to use built-in Read with line ranges fill any need for source access, leaving no obvious gaps.

Maintenance

ActivitySlowing
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for local RAG over personal notes, PDFs, and documents, enabling plain-English querying and hybrid search with multi-hop context expansion.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    A local MCP server enabling hybrid search over documents, memory, and knowledge graphs for retrieval-augmented generation, with tools for SQLite, semantic memory, and entity-relationship queries.
    4
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Zero-trust, air-gapped Enterprise GraphRAG MCP server. Build knowledge graphs from local documents and run multi-hop, citation-grounded queries entirely offline with Ollama.
    5
    315
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kfireew/intelligraph-mini'

If you have feedback or need assistance with the MCP directory API, please join our Discord server