oneshot-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool has a clearly distinct purpose: search_packs finds by keyword, get_pack shows full detail for a specific slug, and list_packs provides a compact overview. There is no overlap or ambiguity between them.
Naming Consistency5/5All three tool names follow a consistent verb_noun pattern: search_packs, get_pack, list_packs. The naming is uniform and predictable.
Tool Count5/5Three tools is well-scoped for a read-only catalog browsing server. Each tool serves a distinct and necessary function without redundancy or excessive granularity.
Completeness5/5The tool surface fully covers the domain of browsing and retrieving OneShot packs: search, overview, and full detail. There are no missing operations for a catalog of this type.
Average 4.4/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- 0 of 1 community issues answered or closed in the last 6 months
- 4 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
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
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses a critical behavioral trait: it 'Reports unverified honestly when no execution receipt exists yet -- never implies a verification the receipt doesn't support.' It also enumerates the contents of the response (receipt facts, price, refund policy, buy URL), giving the agent a clear picture of what to expect. However, it does not mention potential errors, auth requirements, or side-effect behavior, which are common in detailed transparency. Still, for a get operation, the disclosed honesty about verification status is notable.
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, information-dense sentence that front-loads the core purpose ('Full detail for one OneShot pack by slug') before elaborating on the contents. Every clause adds value, and there is no fluff. It is appropriately sized for the tool's 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 the tool has only one parameter and no output schema, the description must explain what the tool returns. It does so comprehensively: what you get, architecture highlights, scale envelope, FAQ, receipt facts, price, refund policy, buy URL, and the verification honesty disclaimer. This is sufficient for an agent to invoke the tool and interpret the result correctly.
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%: the slug parameter has a clear description with an example and guidance to use sibling tools. The tool description adds little beyond 'by slug', which is redundant. Since the schema already handles parameter semantics well, a baseline 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: 'Full detail for one OneShot pack by slug'. It specifies the resource (OneShot pack), the scope (one pack), and the identifier (slug). It effectively distinguishes from sibling tools like list_packs (lists multiple packs) and search_packs (searches), 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 implies when to use this tool: when you have a specific slug and need full pack detail. It does not explicitly contrast with siblings, but the parameter schema instructs to 'Use list_packs or search_packs to find slugs', providing clear guidance on obtaining the required slug. This is strong contextual guidance, though the tool description itself could be more explicit about alternatives.
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?
With no annotations, the description takes on the full burden. It discloses that verification status is 'stated exactly as the receipt supports' and never invented, and that it does not rank or editorialize. It also lists the exact fields returned. This provides strong behavioral transparency, though it could be slightly more explicit about result ordering.
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 composed of three sentences that front-load the purpose and then add necessary behavioral details. It is concise without being sparse, with no filler. Every sentence contributes useful information, though the second sentence is long and packed.
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 adequately covers the return values by naming the fields (title, one-liner, price, verification status, receipt summary, storefront URL). It also explains verification honesty and non-editorializing behavior. It is sufficiently complete for a search tool, though it could include information about result ordering or pagination.
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 input schema already has 100% coverage for both parameters, so baseline is 3. The description adds meaningful value for the 'query' parameter by explaining it can be a stack, problem, or niche, and gives concrete examples like 'stripe billing subscription' or 'offline sync', which go beyond the schema's examples.
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 'Search the OneShot catalog of receipt-verified agent build packs by keyword', which is a specific verb and resource. It distinguishes from siblings (get_pack, list_packs) by framing this as a keyword-based search that returns multiple matches, while also noting it does not editorialize.
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 search by stack, problem, or niche. It gives examples of suitable queries. However, it does not explicitly mention alternatives like 'use list_packs to browse all' or 'use get_pack for details', so exclusions are implied rather than stated.
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?
With no annotations, the description carries the burden and discloses the output content (slug, title, one-liner, etc.) and the single refund-policy summary. It describes the compact format but doesn't explicitly state read-only or safe behavior, though that is implied by listing.
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, front-loaded with the primary purpose, and every sentence earns its place. It efficiently conveys what is returned and what to do next without waste.
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 no-parameter list tool, the description is complete: it names all returned fields, indicates the compact nature, and provides a next step. It fully covers the behavioral context needed for an agent to select and invoke this 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?
The tool has zero parameters, and the input schema is empty, so there are no parameters to describe. The description adds no parameter info, but the baseline for 0 params is 4, which 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 lists the entire OneShot catalog in compact form, naming specific fields returned. It distinguishes itself from get_pack by positioning itself as an overview tool and directing users to get_pack for full detail.
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 when-to-use guidance (for an overview) and names get_pack as the alternative for full detail. However, it does not mention search_packs as an alternative for filtering, leaving a small gap in alternatives coverage.
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/gkaffen338/oneshot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server