gerbil-mcp
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct purpose targeting specific aspects of Gerbil Scheme development: searching symbols, syntax checking, evaluation, macro expansion, listing modules, and listing exports. There is no overlap in functionality, making tool selection unambiguous for an agent.
Naming Consistency5/5All tools follow a consistent 'gerbil_' prefix with descriptive snake_case names (e.g., gerbil_apropos, gerbil_check_syntax). This predictable pattern enhances readability and usability across the toolset.
Tool Count5/5With 6 tools, the server is well-scoped for its domain of Gerbil Scheme development support. Each tool serves a unique and essential function, avoiding bloat while covering key operations like code analysis, evaluation, and module exploration.
Completeness4/5The toolset provides comprehensive coverage for core development tasks such as code validation, execution, and module management. A minor gap exists in lacking tools for file operations or project management, but the included tools enable effective agent workflows without dead ends.
Average 3.7/5 across 6 of 6 tools scored. Lowest: 2.9/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- No commit activity data available
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is failing
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
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
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool evaluates an expression and returns a result, but lacks critical details such as execution environment constraints, error handling, security implications, or performance characteristics. This is insufficient for a tool that executes code, leaving significant gaps in understanding its behavior.
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 concise and well-structured in two sentences: the first states the core functionality, and the second provides usage guidance with a concrete example. Every sentence adds value, and it's front-loaded with the main purpose. A slight deduction because the example could be more efficiently integrated.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a code evaluation tool with no annotations and no output schema, the description is incomplete. It doesn't cover important aspects like return value format, error responses, execution limits, or safety considerations. For a tool that executes arbitrary code, this lack of context is a significant shortfall.
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 fully documents both parameters (expression and imports). The description adds minimal value beyond the schema: it reiterates the purpose of imports ('to make module bindings available') and provides an example, but doesn't explain parameter interactions or edge cases. This meets the baseline for high schema coverage.
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 tool's purpose: 'Evaluate a Gerbil Scheme expression using gxi and return the result.' It specifies the verb ('evaluate'), resource ('Gerbil Scheme expression'), and method ('using gxi'), but doesn't explicitly differentiate it from sibling tools like gerbil_check_syntax or gerbil_expand_macro, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal guidance on when to use this tool. It mentions the imports parameter to make module bindings available and gives an example, but doesn't explain when to choose this tool over alternatives like gerbil_check_syntax for syntax validation or gerbil_expand_macro for macro expansion. No explicit when-not-to-use or prerequisite information is included.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It describes what the tool does (lists exports) but doesn't mention behavioral traits like whether it requires specific permissions, how it handles errors, if there are rate limits, or what the return format looks like. This leaves significant gaps for a tool with no annotation coverage.
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 appropriately sized and front-loaded: the first sentence states the core purpose, and the second provides a concrete example that reinforces usage. Every sentence earns its place with no wasted words or redundant information.
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?
Given the tool's low complexity (single parameter, no output schema, no annotations), the description is adequate but incomplete. It covers purpose and provides an example, but lacks details on behavioral traits and output format, which are important for a tool with no annotations. This meets minimum viability but has clear 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?
The schema description coverage is 100%, so the schema already documents the single parameter 'module_path' with examples. The description adds value by providing an additional example (':std/text/json' returns read-json, write-json) that illustrates the output semantics, going beyond the schema's input-focused documentation. With only one parameter, this earns a high score.
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 ('List') and resource ('exported symbols from a Gerbil module'), and distinguishes it from siblings by focusing on module exports rather than syntax checking, evaluation, or other operations. The example reinforces the specific functionality.
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 through the example (e.g., for module ':std/text/json'), but doesn't explicitly state when to use this tool versus alternatives like 'gerbil_list_std_modules' or 'gerbil_apropos'. It provides context but lacks explicit guidance on tool selection.
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?
With no annotations provided, the description carries the full burden. It discloses the return behavior ('Returns the core-expanded form using syntax->datum') and gives an example output format, but lacks details on error handling, performance, or side effects. It adequately describes the core function without 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?
The description is front-loaded with the core purpose, followed by a brief explanation of the return and a helpful example. Every sentence adds value without redundancy, making it efficient and well-structured.
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 no annotations and no output schema, the description provides sufficient context for a read-only tool with two parameters. It explains what the tool does and the return format, though it could benefit from more behavioral details like error cases. It is mostly complete for its complexity.
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 fully documents both parameters. The description does not add meaning beyond the schema, as it does not explain parameter interactions or provide additional context for 'imports' beyond what the schema states. 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 clearly states the specific action ('Show the macro expansion') and resource ('of a Gerbil Scheme expression'), distinguishing it from siblings like gerbil_eval (evaluation) or gerbil_check_syntax (syntax checking). It provides a concrete example to illustrate the transformation.
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 for macro expansion scenarios with the example, but does not explicitly state when to use this tool versus alternatives like gerbil_eval for execution or gerbil_check_syntax for validation. No exclusions or prerequisites are mentioned.
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?
With no annotations provided, the description carries the full burden. It discloses the tool's behavior (substring matching across all namespaces using ##apropos) and gives an example, but lacks details on permissions, rate limits, error handling, or output format. It adequately describes the core operation but misses advanced behavioral traits.
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 appropriately sized and front-loaded, with two sentences that efficiently convey purpose and usage. The example is relevant and adds clarity without unnecessary details, making every sentence earn its place.
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?
Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is complete enough for basic use. However, it lacks information on output format, error cases, or integration with sibling tools, which could be helpful for an AI agent in a broader context.
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 description coverage is 100%, so the schema already documents the single parameter 'pattern' as a string for substring matching. The description adds minimal value by mentioning 'pattern string' and giving an example, but does not provide additional syntax or format details 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 clearly states the tool's purpose with specific verbs ('search for', 'find') and resources ('Gerbil/Gambit symbols'), and distinguishes it from siblings by specifying it searches across all namespaces using Gambit ##apropos. The example further clarifies the functionality.
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 this tool (searching for symbols matching a pattern), but does not explicitly state when not to use it or name alternatives among the sibling tools (e.g., gerbil_module_exports for specific modules). The example helps illustrate usage.
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?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool's behavior ('check if syntactically valid,' 'uses the Gerbil expander to verify expansion') but lacks details on error handling, performance characteristics, or output format. It adequately covers the core operation but misses additional context like rate limits or response 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 front-loaded and concise with two sentences that directly state the tool's purpose and method. Every sentence adds value: the first defines the action and scope, and the second explains the underlying mechanism. There is no wasted text or redundancy.
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?
Given the tool's moderate complexity (validation without execution), no annotations, and no output schema, the description is minimally complete. It covers what the tool does and how, but lacks details on return values, error cases, or integration with sibling tools. It's adequate for basic understanding but could be more comprehensive for agent use.
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 fully documents both parameters (code and imports). The description adds no specific parameter semantics beyond what the schema provides, such as examples or constraints. Baseline 3 is appropriate as the schema handles parameter documentation effectively.
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 specific verbs ('check if Gerbil Scheme code is syntactically valid') and resource ('Gerbil Scheme code'), distinguishing it from siblings like gerbil_eval (which evaluates) and gerbil_expand_macro (which expands macros). It explicitly notes the tool 'uses the Gerbil expander to verify the code can be expanded,' providing technical specificity.
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 this tool ('check if Gerbil Scheme code is syntactically valid without evaluating it'), implying it's for validation rather than execution. However, it doesn't explicitly state when not to use it or name alternatives among siblings, though the purpose differentiation suggests gerbil_eval as an alternative for evaluation.
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?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the action ('scanning the installation') and output format ('Returns module paths like :std/text/json, :std/iter, etc.'), which adds useful context beyond the input schema. However, it lacks details on potential side effects, error handling, or performance implications (e.g., scanning might be resource-intensive), leaving some behavioral aspects unclear.
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 front-loaded with the core purpose in the first sentence, followed by optional filtering and return details in subsequent sentences. Each sentence earns its place by adding necessary information without redundancy, making it efficient and well-structured for quick understanding.
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 low complexity (1 optional parameter, no output schema, no annotations), the description is mostly complete. It covers the purpose, usage with filtering, and output format. However, without an output schema, it could benefit from more detail on the return structure (e.g., list format, error cases), slightly reducing completeness for agent invocation.
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 has 100% description coverage, with the single parameter 'prefix' fully documented in the schema. The description adds minimal value by reiterating the filtering purpose and providing examples ('e.g. "std/text", "std/net", "gerbil"'), but does not explain semantics beyond what the schema already states, such as how the prefix matching works (e.g., case sensitivity). Baseline 3 is appropriate as the schema does the heavy lifting.
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 ('List available Gerbil standard library modules by scanning the installation') and resource ('Gerbil standard library modules'), distinguishing it from siblings like gerbil_apropos (search) or gerbil_check_syntax (validation). It explicitly mentions what it returns ('module paths like :std/text/json, :std/iter, etc.'), 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 provides clear context for usage by mentioning the optional filtering capability ('Optionally filter by prefix'), which helps differentiate it from tools like gerbil_module_exports (which might list exports of a specific module). However, it does not explicitly state when not to use this tool or name specific alternatives among siblings, such as using gerbil_apropos for searching modules by content rather than listing.
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/ober/gerbil-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server