knot
Server Quality Checklist
Latest release: v1.6.2
- Disambiguation5/5
Each tool targets a distinct aspect of code exploration: file structure, caller tracking, cross-repo dependencies, and semantic search. No overlap in functionality.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern using underscores (explore_file, find_callers, list_repo_dependencies, search_hybrid_context). No mixing of styles.
Tool Count5/5With 4 tools, the server is well-scoped for its purpose of code analysis and cross-repo dependency lookup. Each tool serves a critical and distinct function.
Completeness4/5The tool set covers primary code exploration needs (file structure, callers, dependencies, semantic search). Minor gaps like exact keyword search or raw file content retrieval exist but are not critical given the hybrid search and other tools.
Average 4.8/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 161 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
This repository includes a glama.json configuration file.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It accurately declares 'Read-only graph traversal with no side effects' and explains empty results. It does not mention auth requirements or rate limits, but for a read-only tool this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (introduction, usage, behaviour, parameter guidance). It is concise at 4-5 sentences with no fluff. Each sentence adds value, making it easily digestible.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema, the description clearly states the return format: 'Returns a JSON array of repository names.' It covers the tool's behavior, parameters, and usage context comprehensively for the complexity of the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds context beyond schema: repo_name must match indexing, max_depth defaults/limits, reverse toggle behavior. This extra guidance helps the agent use parameters correctly, justifying a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Read-only cross-repository dependency graph lookup' and explicitly answers the two key questions ('which repos does this repo depend on?' and 'which repos depend on this repo?'). It distinguishes itself from sibling tools like explore_file and find_callers by focusing on repository-level dependencies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: 'Use BEFORE cross-repo analysis' and 'Use reverse mode for impact analysis before breaking changes in shared libraries.' It does not explicitly state when not to use the tool, but the context is sufficiently clear for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description carries full burden. It clearly states read-only with no side effects, describes return format (Markdown grouped by relationship type), and explains special behaviors for JVM code (overridden/overrides) and disambiguation for multiple entities. Highly transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured with clear sections (usage, behaviour/return, parameter guidance, language support). Each sentence adds value. Could be slightly shorter, but clarity and comprehensiveness offset verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, so description must explain return values, which it does in detail: Markdown grouping by relationship type, exact file paths and line numbers, and special handling for JVM and multiple entities. Covers all essential aspects for a dependency lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so schema documents parameters. However, description adds value by explaining entity_name supports exact names or signature fragments and repo_name is optional but recommended for filtering. This extra guidance justifies a score above baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'read-only reverse dependency lookup' and explains it finds all code that references, calls, extends, or implements a specific entity. It distinguishes from search tools by providing exact dependency tracking. The verb 'find' and resource 'callers' are specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use (impact analysis before refactoring, detect dead code) and when not to use (not for semantic feature discovery, use 'search_hybrid_context' instead). Also provides critical guidance about including signature fragments for common method names to avoid irrelevant results.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Declares read-only, no side effects, describes return format (Markdown table), empty state behavior ('No repositories found.'), and mentions support for all languages and build systems.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Well-organized into sections with clear headings. Every sentence is informative, though somewhat verbose. Could be slightly tightened but remains effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given only one optional parameter, no output schema, and no annotations, the description fully covers purpose, usage, behavior, parameter details, and return format, leaving no gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by clarifying case-insensitive substring match and providing examples of filter usage, elevating it above baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a read-only listing of indexed repositories with optional name filtering. It distinguishes itself from siblings by specifying it is for discovering codebases, not for searching code entities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises to use this tool FIRST, provides when-not-to-use (e.g., 'Do NOT use this tool to search for code entities'), and lists specific sibling alternatives for different tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description fully covers behavioral traits. It declares the operation as read-only with no side effects, describes the return format (Markdown outline with line numbers), and details path handling behavior including normalization and ambiguity resolution.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is relatively long but well-structured with clear sections (Usage, Behaviour & Return, Path handling, Parameter guidance). While every sentence adds value, slight redundancy exists (e.g., repetition of file_path details). Overall efficient for the complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description explains the return type (Markdown outline with entity groupings and line numbers). It covers all necessary aspects: purpose, usage context, behavioral traits, parameter details, edge cases (ambiguous paths), and supported languages. No gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, but the description adds significant value beyond the schema. For file_path, it explains preferred relative paths, absolute path acceptance, and normalization. For repo_name, it clarifies when to include it and the behavior when omitted, which is critical for correct usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it's a 'Read-only file anatomy inspection' tool for listing classes, methods, and properties within a specific source file. It distinguishes itself from siblings like 'search_hybrid_context' by explicitly noting it is not for searching across multiple files.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on when to use: 'Use AFTER identifying an interesting file via search_hybrid_context to understand its available methods, or before modifying a file.' Also states what not to use for: 'Do NOT use this for searching across multiple files.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description fully carries burden. It declares 'Read-only', 'No side effects', describes the dual query mechanism, and notes prerequisites (active server with databases). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear sections (header, prerequisites, behavior, usage, parameters, supported languages). Every sentence adds value. Front-loaded with key purpose. No unnecessary repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, so description explains return format: Markdown with file paths, line numbers, code snippets, dependencies. Supports multiple languages. Addresses all aspects needed for a complex search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all parameters (100% coverage). Description adds valuable guidance: query should be 2-5 words, max_results recommendations, repo_name inclusion to avoid cross-repo pollution.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it performs read-only semantic and structural code search combining vector embeddings and graph analysis. It specifies what it returns and distinguishes from siblings by explicitly mentioning it's for initial discovery.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'FIRST step when exploring unfamiliar code or discovering architectural patterns.' Also provides when not to use and names the alternative tool 'find_callers'. Includes prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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/raultov/knot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server