intelligraph-mini
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@intelligraph-minifind the shortest path from ConfigManager to Database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 |
| RRF hybrid search (FTS5 + semantic embeddings). Finds symbols by meaning. |
| Multi-hop subgraph + source code snippets + rationale notes. |
| Shortest path between two symbols in the call graph. |
| Blast-radius analysis over CALLS/IMPORTS_FROM edges. |
| Read source files from disk. |
How it works
Build (first run):
graphify update .+code-review-graph build→graphify-out/graph.json+.code-review-graph/graph.dbSnippets: reads source files, stores ~500 char snippets per node in
node_snippetstableSearch: RRF (Reciprocal Rank Fusion, k=30) blends FTS5 keyword ranking with embedding cosine similarity. Adaptive 50% cutoff returns only genuinely relevant files.
Traversal: BFS with token budget over cached adjacency (scales to 140k edges)
Rationale: surfaces
#NOTE/#WHYnodes from graphify's rationale extraction
Requirements
Python 3.10+
graphifyyandcode-review-graphCLIs on PATH (installed automatically as dependencies)
License
MIT
Available Tools
5 toolsimpactA
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| paths | Yes | ||
| max_bytes | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| depth | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ||
| from | Yes |
TDQS
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.
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.
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.
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.
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.
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.
searchA
Search the codebase for symbols, files, or concepts. Works equally well for exact names ('UserStatus'), file paths ('types/enums'), or natural language ('how authentication works'). Returns name, kind, file path with line ranges (file:start-end), and confidence [H/M/L]. Use built-in Read with offset=line_start, limit=line_end-line_start to get source. Use this FIRST — replaces grep and glob.
| Name | Required | Description | Default |
|---|---|---|---|
| near | No | Optional: only return files connected to this symbol or file path (within 3 graph hops). Use when you know which subsystem you're working in. | |
| query | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses return format ('name, kind, file path with line ranges (file:start-end), and confidence [H/M/L]'), demonstrates handling of exact names, paths, and natural language, and explains the recommended follow-up action for retrieving source. This goes well beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each serving a distinct purpose: purpose, query flexibility, output format, and usage guidance. No wasted words; front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema and annotations, the description explains what results look like and how to retrieve source code. It covers the search query types and the near parameter is adequately described in the schema. The description is sufficient for an agent to select and invoke the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds rich meaning to the query parameter by illustrating exact names, file paths, and natural language queries. Since schema description coverage is only 50% (query lacks schema description), the description fully compensates by explaining query semantics in detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search the codebase for symbols, files, or concepts.' It provides concrete examples of acceptable query formats and explicitly positions itself as a replacement for grep/glob, distinguishing it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage priority: 'Use this FIRST — replaces grep and glob.' Also advises how to follow up: 'Use built-in Read with offset=line_start, limit=line_end-line_start to get source.' This gives clear when-to-use guidance.
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.
5 tool updates
v0.1.0- First observed
impact - First observed
local_files - First observed
node - First observed
path - First observed
search
TDQS
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.
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.
Five tools is well-scoped for a mini code-graph intelligence server, covering search, exploration, pathfinding, impact analysis, and file reading without redundancy.
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
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
Self-hosted AI-native knowledge workspace with hybrid search, GraphRAG, and MCP.
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
Graph-native persistent memory for AI agents — 33 MCP tools, zero-LLM writes.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceLocal MCP server for indexing personal knowledge into SQLite with hybrid search, chunk-level citations, memory tools, and agent orchestration.4MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for local RAG over personal notes, PDFs, and documents, enabling plain-English querying and hybrid search with multi-hop context expansion.MIT
- AlicenseAqualityCmaintenanceA 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.41MIT
- AlicenseAqualityBmaintenanceZero-trust, air-gapped Enterprise GraphRAG MCP server. Build knowledge graphs from local documents and run multi-hop, citation-grounded queries entirely offline with Ollama.5315MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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