MeshMind
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MESHMIND_HOME | No | Directory for persistent cache (default ~/.meshmind) | |
| MESHMIND_CACHE_MAX | No | Maximum number of cached entries (default 500) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| scan_local_codebaseA | Recursively scan a directory and build a dependency graph: files, top-level symbols, import edges, an inferred call graph (with EXTRACTED/INFERRED/AMBIGUOUS confidence), community clustering, and structural analysis (hub/god nodes, import cycles, orphans). Default returns a compact summary; raw=true returns the full JSON map. |
| export_codebase_graphA | Scan a directory and export its dependency graph as either a Mermaid diagram (format='mermaid') or a D3/Obsidian-friendly nodes+edges JSON (format='json'). |
| research_last_30_daysA | Fetch recent community/social signal on a topic from keyless public sources (Hacker News + comment enrichment, Reddit w/ RSS fallback, GitHub, Web, Lobsters, Bluesky, Stack Overflow, Lemmy), filtered to a trailing window. Results are relevance-reranked and deduped. Set compress=true to pipe the result through the token-reduction pipeline. |
| get_optimized_contextA | Reversible token-reduction pipeline. Accepts raw |
| crush_fileA | Shortcut for the common 'this file is too big to read' case: reads a local file and compresses it in one call. With |
| retrieve_contextA | Recover the original, uncompressed text for a |
| context_statsA | Return token-savings stats: |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Tools have largely distinct purposes, with some overlap between crush_file and get_optimized_context as both compress, but they target different use cases (file shortcut vs. general pipeline). export_codebase_graph and scan_local_codebase are related but differ in output format and depth. Overall, agents can distinguish most tools.
All tool names use snake_case with a consistent verb_noun or descriptive pattern (e.g., crush_file, get_optimized_context, research_last_30_days). No mixing of conventions, making naming predictable and clear.
Seven tools cover the advertised functionality—context compression, codebase analysis, and research—without being excessive. Each tool has a defined role, and the count is appropriate for the server's purpose.
The tool set covers key operations: compression, decompression, stats, codebase scanning, graph export, and research. Minor gaps exist, such as no tool to list or manage stored refs, and no direct configuration update, but core workflows are well-supported.