Skeleton MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct purpose with no overlap: create_item, delete_item, get_item, list_items, and update_item form a complete CRUD set for items, while health_check is a separate server management tool. The descriptions reinforce distinct actions on specific resources, eliminating any ambiguity.
Naming Consistency5/5All tools follow a consistent verb_noun pattern with snake_case throughout: create_item, delete_item, get_item, health_check, list_items, update_item. The naming is predictable and readable, with no deviations in style or convention.
Tool Count5/5With 6 tools, this server is well-scoped for managing items and checking server health. The count is appropriate, providing full CRUD operations plus a utility tool without being overly complex or insufficient for the domain.
Completeness5/5The tool surface is complete for the item management domain, covering create, read (get and list), update, and delete operations with proper pagination and filtering. The health_check tool adds server monitoring, leaving no obvious gaps for core workflows.
Average 3.4/5 across 6 of 6 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 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
- 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. While it mentions the destructive nature ('Delete') and error conditions, it doesn't address critical aspects like whether deletion is permanent, what permissions are required, rate limits, or side effects on related data. The 'Raises' section adds some value but doesn't fully compensate for the lack of annotations.
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 well-structured with clear sections (Args, Returns, Raises) and uses minimal words to convey essential information. Every sentence earns its place, though the core 'Delete an item' could be slightly more specific about what 'item' refers to in this context.
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 this is a destructive operation with no annotations, 0% schema coverage, but with an output schema (implied by 'Returns'), the description is moderately complete. It covers the basic operation, parameter, return value, and one error case, but lacks details on permissions, reversibility, and broader error handling that would be crucial for safe 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 0%, so the description must compensate. It provides the parameter name and clarifies it's 'The unique identifier of the item to delete,' which adds meaningful context beyond the bare schema. However, it doesn't specify format requirements (UUID, integer, etc.) or validation rules, leaving gaps in parameter understanding.
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 verb ('Delete') and resource ('an item'), making the purpose immediately understandable. However, it doesn't differentiate this destructive operation from its sibling 'update_item' which also modifies items, or explain what type of 'item' is being deleted (database record, file, etc.).
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 no guidance on when to use this tool versus alternatives like 'update_item' for modification or 'create_item' for recreation. It mentions raising ValueError if the item is not found, but doesn't specify prerequisites like authentication needs or whether deletion is reversible.
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 states this is a creation operation but doesn't mention permission requirements, whether the operation is idempotent, potential side effects, rate limits, or error handling. The return statement is helpful but doesn't fully compensate for the lack of behavioral context in a mutation tool.
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 perfectly structured with clear sections: a one-sentence purpose statement, organized parameter documentation, and a return value description. Every sentence earns its place, and the information is front-loaded with the most important details first. No wasted words 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 this is a mutation tool with no annotations but with an output schema (implied by 'Returns' statement), the description covers the basics: purpose, parameters, and return value. However, for a creation operation, it lacks important context about authentication needs, error conditions, and behavioral constraints that would help the agent use it 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?
With 0% schema description coverage, the description must compensate, and it does so effectively by documenting all 3 parameters with their purposes and requirements. It clearly distinguishes required vs optional parameters and provides meaningful context about what each parameter represents, going well beyond what the bare schema provides.
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 verb 'Create' and resource 'new item', making the purpose immediately understandable. It distinguishes from siblings like 'get_item' or 'update_item' by specifying creation rather than retrieval or modification. However, it doesn't specify what type of item or system this operates on, 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 no guidance on when to use this tool versus alternatives like 'update_item' or when not to use it. There's no mention of prerequisites, error conditions, or typical use cases. The agent must infer usage from the tool name alone, which is insufficient for optimal selection.
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?
No annotations are provided, so the description carries full burden. It states what the tool does but doesn't disclose behavioral traits like whether this requires authentication, has rate limits, or what specific 'configuration info' is returned. The mention of return format is helpful but insufficient for a mutation-free tool with zero 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.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences: one stating the purpose, one describing the return format. It's front-loaded with the core functionality. The second sentence about returns could potentially be omitted since there's an output schema, but it's still useful context.
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 this is a simple health check tool with 0 parameters and an output schema, the description is adequate but has gaps. It explains what the tool does and the return format, but doesn't provide context about when to use it or behavioral considerations. With output schema handling return values, the description doesn't need to explain those details.
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?
With 0 parameters and 100% schema description coverage, the baseline would be 4. The description correctly indicates this is a parameterless health check, which aligns perfectly with the empty input schema. No additional parameter information is needed or provided.
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 verb ('Check') and resource ('health status of the MCP server'), making the purpose unambiguous. It doesn't explicitly differentiate from siblings like 'get_item' or 'list_items', but health checking is sufficiently distinct from CRUD operations that differentiation is implied rather than explicit.
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 this should be used for health monitoring rather than data operations, but doesn't provide explicit guidance on when to use it versus alternatives. Given the sibling tools are all CRUD operations for 'item', the context suggests this is for server diagnostics rather than data manipulation, but this isn't explicitly stated.
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 full burden. It discloses that this is a mutation operation ('Update'), mentions the 'ValueError' for not found items, and notes that metadata 'replaces existing'. However, it lacks details about permissions, side effects, rate limits, or what 'updated item data' contains, leaving behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with sections for Args, Returns, and Raises, making it easy to scan. Every sentence adds value—no fluff or repetition. It's appropriately sized for a tool with 4 parameters and clear output.
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 4 parameters, 0% schema coverage, no annotations, but an output schema exists, the description is moderately complete. It covers basic parameter meanings and error handling, but lacks context on sibling differentiation, permissions, or detailed behavioral traits, making it adequate but with gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaningful semantics: 'item_id' is 'unique identifier', parameters are optional with 'new' values, and metadata 'replaces existing'. This clarifies beyond the schema's types and defaults, though it doesn't cover all parameter nuances like format constraints.
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 verb 'Update' and resource 'existing item', making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'create_item' or 'delete_item' beyond the basic verb difference, 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 no guidance on when to use this tool versus alternatives like 'create_item' or 'delete_item'. It mentions that 'item_id' is required and parameters are optional, but offers no context about prerequisites, error conditions beyond 'ValueError', or comparison to siblings.
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?
No annotations are provided, so the description carries the full burden. It discloses that the tool returns 'The item data if found' and raises 'ValueError: If the item is not found,' which adds useful context about success and error conditions. However, it lacks details on permissions, rate limits, or other behavioral traits like whether it's read-only or has 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 well-structured and front-loaded with the core purpose, followed by clear sections for Args, Returns, and Raises. Every sentence earns its place by providing essential information without redundancy. It is appropriately sized for a simple tool.
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 (one parameter) and the presence of an output schema (which handles return values), the description is mostly complete. It covers the purpose, parameter meaning, and error conditions. However, it lacks context on when to use versus siblings and behavioral details like auth needs, which could be improved for a tool in a set with create/delete/update operations.
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 has 0% description coverage, but the description compensates by explaining the parameter: 'item_id: The unique identifier of the item.' This adds meaning beyond the schema's type definition. Since there is only one parameter, the description effectively covers it, though it could provide more details like format or examples.
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: 'Get a specific item by ID.' It uses a specific verb ('Get') and resource ('item'), making it easy to understand. However, it does not explicitly differentiate from sibling tools like 'list_items' (which retrieves multiple items) or 'health_check' (which checks server status), though the specificity of 'by ID' implies a distinction.
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 stating 'Get a specific item by ID,' suggesting it should be used when you have a known item ID. However, it does not provide explicit guidance on when to use this tool versus alternatives like 'list_items' (for browsing items) or 'create_item' (for adding new items). 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 full burden. It discloses pagination behavior (1-indexed page, returns metadata) and filtering (case-insensitive contains), but doesn't mention rate limits, authentication needs, error conditions, or whether this is a read-only operation (though 'List' implies safe read).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with a clear summary sentence followed by Args/Returns sections. Every sentence adds value, though the Returns section could be slightly more concise given the output schema exists.
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?
Good completeness for a list tool: purpose, parameters, and return structure are documented. With output schema present, the Returns description is somewhat redundant but helpful. Missing behavioral aspects like error handling or performance characteristics keep it from a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining all 3 parameters: page (1-indexed), page_size (items per page), and filter_name (case-insensitive contains, optional). It adds crucial semantic details not in the bare schema.
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 verb 'List' and resource 'items', specifying optional filtering and pagination. It distinguishes from siblings like get_item (single item) and create_item/update_item/delete_item (mutations), but doesn't explicitly contrast with search or other list variants that might exist.
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 retrieving multiple items with filtering/pagination, but doesn't explicitly state when to use this vs. get_item (single item) or when filtering/pagination is appropriate. No alternatives or exclusions are mentioned.
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/nickweedon/playwright-proxy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server