neovim-use-mcp
Server Quality Checklist
Latest release: v0.1.4
- Disambiguation5/5
Every tool targets a distinct operation: file opening/reading/editing, buffer listing, LSP queries, formatting, and plugin execution. The three edit tools are clearly differentiated by whether they replace a range, replace a string, or insert text.
Naming Consistency4/5All tools share the nvim_ prefix and snake_case style, but not all follow the verb_noun pattern. nvim_references, nvim_code_actions, and nvim_document_symbols use noun phrases, while others like nvim_open_file and nvim_edit_lines are verb_noun. This is a minor deviation from a fully consistent pattern.
Tool Count4/518 tools is slightly above the typical 3-15 range. However, the count is justified by the broad scope of Neovim integration: file operations, LSP features, formatting, and plugin execution. Each tool serves a distinct purpose and earns its place.
Completeness5/5The tool set covers the full lifecycle of editing with LSP: opening, reading, editing, saving, diagnosing, navigating, renaming, applying code actions, formatting, and listing symbols. The inclusion of nvim_exec_lua and nvim_command provides an escape hatch for any plugin-specific needs, leaving no major gaps.
Average 4.2/5 across 18 of 18 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 11 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.
Add a glama.json file to provide metadata about your server.
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.
Add related servers to improve discoverability.
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
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is already disclosed. The description adds that it works through LSP, which is useful dependency context. However, it doesn't clarify whether the tool returns a location, navigates the buffer, or what happens when no definition is found. With annotations covering the read-only aspect, this is adequate but not rich.
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 a single, front-loaded sentence with no filler or redundancy. It efficiently communicates the tool's core function in just 10 words, exactly what's needed for a simple LSP query tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with 4 parameters and no output schema. The description covers the basic operation but leaves ambiguous the return value or any cursor/buffer side effects. For a tool without an output schema, a bit more detail about the expected result or failure behavior would improve completeness, but it remains minimally viable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides clear descriptions for all 4 parameters, including line/column being 1-based and wait_ms being an LSP timeout (100% coverage). The description's phrase 'at a position' adds little beyond the schema. Baseline of 3 is appropriate because the schema handles parameter meaning.
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 action ('Find where the symbol at a position is defined') and the mechanism ('through the LSP'). It distinguishes itself from siblings like nvim_references and nvim_hover by focusing specifically on definitions.
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 clear context for when to use the tool: when you need to locate a definition. It does not explicitly mention alternatives or exclusions, but the focused purpose makes the intended usage obvious. Sibling tool names like nvim_references and nvim_hover further clarify the distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds a behavioral trait: omitting the path returns diagnostics for all open buffers, which goes beyond the schema. However, it does not disclose other potential behaviors like rate limits or detailed response formatting, so it earns a mid-range score.
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 concise (two sentences) and front-loaded with the core action. Every word earns its place, and it avoids redundancy with the schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only diagnostics tool with three optional parameters and no output schema, the description is sufficient. It states what the tool does, when to use it, and the key behavior of path omission. It lacks return value details, but without an output schema and given the simple nature, this is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with every parameter (path, wait_ms, severity) already described. The description adds no parameter-specific details beyond what the schema provides, so the baseline score of 3 applies.
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 with a specific verb and resource: 'Get LSP errors and warnings'. It also distinguishes the tool from siblings by describing scope variations (one file or all open buffers).
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 clear context for when to use ('Use this to check work after an edit'), which is more than implied but does not explicitly mention alternatives or when not to use it. Since no sibling tool directly competes, this is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds useful context about performance ('Cheaper than reading the whole file') and the line-number output, but it omits behavioral details such as LSP dependency and timeout semantics. This is moderate additional transparency beyond annotations.
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 two sentences long, front-loads the core action, and contains no filler. Every word contributes to understanding the tool's purpose or benefit.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only outline tool, the description adequately conveys the output (symbols and line numbers) and a practical use case. It could mention the LSP dependency or contrast with nvim_workspace_symbols, but the absence of an output schema is partially compensated by the explicit symbol list. Slightly more detail would make it complete, but it is already quite informative.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both 'path' and 'wait_ms' already documented in the input schema. The description adds no extra parameter-level meaning, so the baseline score of 3 is appropriate.
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 uses the specific verb 'List' with a well-defined resource ('symbol outline of a file') and enumerates symbol types (classes, functions, fields) plus line numbers. This clearly distinguishes it from nvim_workspace_symbols by confining scope to a single file.
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 phrase 'Cheaper than reading the whole file' provides clear context for when to use this tool as a lightweight alternative to full-file reads. However, it does not explicitly name alternatives like nvim_workspace_symbols or state when not to use it, so it stops 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.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that it uses LSP and finds 'every' reference, but does not disclose return format, error behavior, or how it handles the wait_ms timeout. It provides some context beyond annotations but not rich detail, so a 3 is appropriate.
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?
Two sentences, zero waste. The first sentence states the purpose, and the second gives usage context. Perfectly concise and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, the schema covers parameters, and annotations cover safety. The description explains the purpose and use case. It doesn't describe return value or edge cases, but for a read-only LSP references tool with no output schema, this is adequately complete for an agent to invoke correctly. A 4 fits.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, meaning all four parameters (path, line, column, wait_ms) have descriptions in the schema. The tool description does not add extra semantic meaning beyond that, so the baseline 3 is correct.
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 action ('Find every reference'), the target ('symbol at a position'), and the method ('through the LSP'). This distinguishes it from siblings like nvim_goto_definition (jump to definition) and nvim_hover (show info), making the purpose unambiguous.
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 explicitly says 'Use this before a rename or a signature change,' giving a clear when-to-use context. However, it does not explicitly name alternatives or say when not to use it, which would move it to a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds useful context that results come from the LSP and span the whole project, but it does not disclose timeout behavior, potential need for an active language server, or return format. This is comparable to the get_calls example.
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?
Two concise sentences immediately state the action, scope, method, and intended use. No wasted words; every clause adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple 2-parameter schema, rich annotations, and no output schema, the description sufficiently covers purpose, usage context, and implementation. It lacks an explicit alternative mention, but the 'whole project' scope strongly implies a contrast with document-local tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both query and wait_ms. The description reinforces that query is a symbol name or prefix, but adds no additional semantic detail beyond the schema.
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 searches symbols across the whole project via LSP, with a specific use case: finding a definition by name without knowing the file. This distinguishes it from sibling tools like nvim_document_symbols and nvim_goto_definition.
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?
It explicitly advises when to use the tool: 'find a definition by name without knowing the file.' This provides clear context but does not name alternatives or state when not to use it, so a small gap remains.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations, the description discloses save behavior and that format-on-save autocmds are skipped by default. This adds meaningful context about side effects not inferable from readOnlyHint/idempotentHint/destructiveHint.
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 two concise sentences with no fluff. The primary operation is front-loaded, followed by a key usage edge case and an important behavioral detail. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple insertion tool with no output schema, the description covers the operation, line indexing, append behavior, and save/default formatting behavior. It is sufficiently complete, though it does not mention potential errors or the effect of save=false explicitly.
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 the schema already documents all parameters. The description adds value by explaining that a line beyond the end appends, and by clarifying the default save behavior, which goes beyond the schema's bare descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation: insert text before a given 1-based line. It is specific enough to identify the tool's main function, though it does not explicitly contrast it with sibling tools like nvim_edit_lines or nvim_edit_text.
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?
Provides clear usage context: lines are 1-based, and using a line beyond the end appends. It does not explicitly mention alternatives or when not to use this tool, but the append guidance gives actionable usage directions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that applying an action saves the file, adding a concrete behavioral detail beyond the destructiveHint annotation. It also clarifies the list vs. apply distinction, which is helpful.
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?
Three concise sentences front-load the main purpose (list or apply code actions) and immediately follow with the optional apply_index behavior and the common use case. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core functionality, the file-saving side effect, and the intended use case. It does not detail return values, but with no output schema and a straightforward list operation, the provided info is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the schema already documents apply_index semantics ('Index from a previous list call; omit to only list'). The description reinforces this but adds little new meaning beyond the schema.
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 lists LSP code actions at a position and can apply one by passing apply_index. It uses specific verbs (list/apply) and names the resource (LSP code actions), distinguishing it from sibling tools like nvim_diagnostics.
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 gives clear context: 'Use this to apply quick fixes for diagnostics.' It does not explicitly name alternatives or exclusions, but this guidance is sufficient for an agent to know when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate a non-read-only, idempotent, and non-destructive tool. The description adds meaningful behavioral context by explicitly stating that the file is saved after formatting, which is not derivable from the annotations alone. No contradiction with annotations.
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 a single, well-structured sentence that front-loads the action and resource. It contains no filler or redundant information and earns its place entirely.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, the description covers the essential aspects: scope (whole file or range), the action (format and save), and the formatter context. The schema and annotations cover the remaining details, and an output schema is absent so return values do not need explanation. It is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides descriptions for all parameters (100% coverage), so the description does not need to explain parameters in detail. It does add a slight contextual hint about whole file vs. range, but this adds minimal value over the schema.
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 specific action ('Format') on a specific resource ('a whole file or a line range') and additionally notes that it saves afterwards. It distinguishes itself from sibling tools by focusing solely on formatting, which is unambiguous.
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 clear context for when to use the tool: formatting either an entire file or a specific line range. It does not, however, explicitly exclude alternatives or name sibling tools like nvim_code_actions that might also be able to format, 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.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context by stating it returns the same text the editor shows on hover, which helps the agent understand the output without contradiction.
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 a single, focused sentence that starts with the action verb and includes the essential scope and output equivalence. There is no wasted wording or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there is no output schema, the description does a good job of indicating the return content ('same text the editor shows on hover'). It lacks details about exact formatting (e.g., plain text vs. markdown), but it is sufficient for a simple read-only tool with strong annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already has 100% parameter coverage with descriptions for path, line, column, and wait_ms. The description does not add any additional parameter-level semantics, so it meets the baseline but doesn't exceed it.
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 uses a specific verb 'Get' and clearly defines the resource as 'type and documentation information for the symbol at a position'. It further clarifies by noting this is 'the same text the editor shows on hover', which distinguishes it from sibling tools like nvim_goto_definition or nvim_references.
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 clearly implies the tool is for retrieving hover-style information, which is contextually distinct from other tools. However, it does not explicitly mention when not to use it or point to alternatives, so it stops short of full explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds valuable behavioral context beyond annotations: 'Opens the file if needed' discloses a potential side effect, and 'with line numbers' hints at the return format. This goes beyond what annotations provide, though it does not detail error handling or exact output structure.
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 three short sentences, front-loaded with the core purpose. Every sentence earns its place: the first states what it does, the second explains a key behavior (opening the file), and the third gives parameter guidance. There is no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with strong annotations and complete schema, the description is largely sufficient. It covers the tool's core behavior, optional parameters, and a key side effect. While it could mention error cases or return format in more detail, the absence of an output schema and the simplicity of the operation make this a minor gap. The description is complete enough for an agent to select and invoke the tool correctly.
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% with each parameter described. The description adds practical context by explaining that start_line and end_line are for 'read a slice of a large file,' which clarifies their purpose beyond the schema's individual descriptions. This reinforces the 1-based inclusive semantics and provides a use-case scenario, adding value over the schema alone.
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 a file through Neovim with line numbers.' It uses a specific verb (read) and resource (file/buffer), and distinguishes itself from sibling edit tools like nvim_edit_lines and nvim_insert_lines by emphasizing read-only behavior and line-numbered output. The title 'Read lines from a Neovim buffer' reinforces this.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning 'Use start_line and end_line to read a slice of a large file,' which gives context for when parameters are relevant. However, it does not explicitly contrast with alternatives such as nvim_open_file or nvim_edit_lines, nor does it state when not to use this tool. The usage guidance is present but implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the destructiveHint annotation, the description discloses that it 'save[s] every changed file' and operates 'across the whole workspace,' which is important behavioral context. It doesn't cover undoability or permission requirements, but it adds meaningful detail about side 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no fluff. The first sentence front-loads the action and scope, and the second provides a comparative benefit. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there is no output schema, the description covers key aspects: what it does (LSP rename), scope (workspace), and side effects (saves changed files). It is sufficiently complete for this straightforward mutation tool, though it could mention potential reliability dependencies on the LSP.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter already having a clear description. The tool description does not add extra meaning to the parameters, so the baseline score of 3 is appropriate.
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 function: 'Rename a symbol across the whole workspace with the LSP, then save every changed file.' It uses a specific verb and resource (rename symbol) and distinguishes itself from sibling editing tools by emphasizing workspace-wide LSP-based renaming.
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 context by stating 'Safer than a text search and replace,' which implies when this tool should be preferred over naive text editing. It does not explicitly name alternatives or exclusions, but the rationale gives a clear usage signal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=false and destructiveHint=true, so the agent already knows this can mutate state. The description adds that it returns output, which is useful, but does not elaborate on side effects or risks beyond what annotations imply. It neither contradicts annotations nor adds deep behavioral context.
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 exactly two sentences, no wasted words. The first sentence states purpose with examples, the second provides usage context. Every sentence earns its place.
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?
With a single parameter, full schema coverage, no output schema required, and annotations covering safety, the description is sufficient. It explains what it does, gives examples, mentions output return, and states the intended use case for plugins.
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?
The schema already provides a clear description of the 'command' parameter (Ex command without leading colon). The description adds value through concrete examples ('Telescope find_files', 'Git blame') that illustrate expected input, enhancing understanding beyond the schema alone.
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 runs a Neovim Ex command, with concrete examples like 'Telescope find_files' and 'Git blame', and explicitly distinguishes this from other sibling tools by focusing on Ex commands and plugin driving.
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 gives clear usage context: 'Use this to drive installed plugins.' This implies when to use it (invoking plugin commands) but does not explicitly name alternatives or exclusions, such as using nvim_exec_lua for Lua code, leaving a small gap.
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?
Beyond the destructiveHint annotation, the description discloses key behaviors: the buffer is saved by default, format-on-save autocmds are skipped to keep the diff minimal, and fresh LSP diagnostics are returned. This is valuable operational context an agent needs before invoking a destructive edit.
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 compact and front-loaded with the core behavior, then covers side effects and follow-up. The final sentence is slightly awkward ('once editing and fixes on that are done') and the missing space after 'file.Use' is a minor flaw, but no sentence is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple schema, no output schema, and the presence of annotations, the description covers the essential action, default save behavior, formatting caveat, and return value. It could mention behavior when save=false or how invalid line ranges are handled, but those are minor given the rich schema coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description reinforces the inclusive, 1-based line range semantics, but the schema already documents each parameter clearly. The description does not need to add much beyond what the schema provides.
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 uses a specific verb and resource: 'directly replace lines start_line..end_line' with new text. It also positions itself as 'the default way to edit files,' which helps an agent distinguish it from the other editing-related sibling tools.
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 clearly establishes this as the default editing tool and gives follow-up guidance to use nvim_format afterward. It does not explicitly describe when to choose nvim_insert_lines or nvim_edit_text instead, but the 'default way to edit' framing provides sufficient context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey idempotency and non-destructiveness. The description adds useful behavioral context: it opens buffers, starts LSP clients, and reports buffer id, filetype, line count, and attached LSP clients. No contradiction with the annotations.
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?
Three tight sentences cover action, input format, return value, and usage timing. Every sentence earns its place and the primary purpose is front-loaded.
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?
For a simple two-parameter tool, the description is complete: it explains input flexibility, what the call does, what it returns, and when to call it. No output schema exists, so the explicit return-value summary is valuable and sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both path and wait_ms. The description restates that a single path or array is accepted, but adds no meaningful parameter semantics beyond the schema.
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 uses a specific verb-resource pair ('Open one or more files in Neovim buffers') and adds the distinctive behavior of starting LSP clients. This clearly differentiates it from sibling tools like nvim_read_file or nvim_edit_lines.
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 explicitly says 'Call this before LSP tools,' which gives clear timing context. It does not name alternatives or state when not to use it, so it falls slightly short of fully explicit routing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful behavioral context beyond the annotations by disclosing that format-on-save autocmds are skipped. It also clarifies the intended workflow tie-in to edits made with save=false, which is not implied by the structured annotations.
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 two sentences with no filler. The core action is front-loaded, followed by the key behavioral caveat and then the usage context. Every sentence adds necessary information.
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?
For a simple one-parameter tool with annotations already covering safety and idempotency, the description is complete. It conveys the purpose, the critical behavioral exception, and the specific scenario in which the tool should be used.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the single 'path' parameter is already documented as 'File path'. The description does not add further parameter-level detail, so the baseline score of 3 is appropriate.
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 specific action: 'Write a buffer to disk', identifying both the verb and resource. It further distinguishes itself by noting it does so 'without running format-on-save autocmds', which separates it from formatting-related sibling tools.
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 gives explicit guidance on when to use the tool: 'Use this after edits made with save set to false.' This provides clear context for invocation, though it does not explicitly name alternatives or state when not to use it.
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?
Adds substantial behavior beyond the destructiveHint annotation: failure when the string is missing, failure on multiple matches unless replace_all is true, default save behavior, and format-on-save autocmd suppression. These details are not present in the annotations and do not contradict them.
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?
Three sentences with the core action front-loaded; every sentence earns its place by covering failure conditions, save/autocmd behavior, and a usage caution. Zero filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers core action, failure modes, save behavior, and a usage caution; combined with the destructiveHint annotation this is nearly complete for a mutation tool. Gaps: return-value behavior is unspecified and no output schema exists, and the multi-line alternative tool is unnamed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description only lightly enriches parameters by tying replace_all semantics to the multiple-match failure condition; it adds no syntax or format details for old_text/new_text beyond the schema descriptions.
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?
States a specific verb ('Replace') and resource ('an exact string in a file'), and 'exact string' scope clearly distinguishes it from line-based siblings like nvim_edit_lines and nvim_insert_lines. The title 'Replace exact text' aligns cleanly with the description.
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?
Gives an explicit when-not-to-use: 'It is recommended to avoid using this tool for multi-line edits,' which steers agents toward the line-based siblings. However, it never names the specific alternative tool, so the agent must infer which sibling to pick.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and readOnlyHint=false, covering the safety profile. The description adds valuable protocol details about how arguments are passed ('through `...`') and the requirement to use `return` to send a value back, which is not explicitly stated in annotations but is essential for correct invocation.
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?
Two sentences, front-loaded with the core function, then the argument/return contract, then usage guidance. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool is a generic execution hook, the description adequately covers the execution contract (args, return), the use case (plugins without dedicated tool), and the safety profile through annotations. It lacks an explicit mention of error behavior or supported Lua value types for args/returns, but for a code-execution tool this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and already documents `code` as 'Lua source; use return to send a value back' and `args` as 'Values passed to the chunk as ...'. The description repeats these details without adding new meaning, so baseline 3 is appropriate.
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 states a specific verb+resource: 'Run a Lua chunk inside Neovim and return its value.' It clearly distinguishes from higher-level sibling tools by positioning this as a generic escape hatch for 'plugins that have no dedicated tool'.
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 'Use this to reach plugins that have no dedicated tool,' which implies using dedicated sibling tools when available and only falling back to this generic executor. This provides clear when-to-use and when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the agent knows this is a safe, non-destructive operation. The description adds value beyond annotations by specifying the scope ('every loaded buffer') and the exact return fields (path, filetype, modified state), providing useful behavioral context without contradiction.
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 a single, well-structured sentence that front-loads the verb, includes the resource, and lists the return details. Every word provides value; there is no redundancy or unnecessary elaboration.
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?
This is a simple tool with no parameters, no output schema, and strong annotations. The description fully communicates what the tool does and what it returns (path, filetype, modified state). Given the low complexity and the presence of safety annotations, the description is complete for an AI agent to select and invoke this tool correctly.
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?
There are zero parameters, so the description does not need to explain parameter semantics. The baseline score of 4 applies, and the description correctly focuses on what the tool does rather than repeating schema information.
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 specific verb 'List' and the resource 'loaded buffer', and details exactly what is returned (path, filetype, modified state). This distinguishes it from sibling tools like nvim_open_file or nvim_read_file, which perform different actions.
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 context is clear: this tool lists every loaded buffer, implying it is used to inventory open buffers. While it does not explicitly mention exclusions or alternatives, the role is self-evident from the description and the sibling tool set. No prerequisite or when-not-to-use guidance is needed for such a simple read-only listing tool.
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/santanusinha/neovim-use-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server