packkit-mcp
OfficialServer Quality Checklist
Latest release: v3.3.3
- Disambiguation5/5
Only one tool exists, so there is no possibility of confusion or overlap.
Naming Consistency5/5With a single tool, naming consistency is not an issue; the name follows a clear verb_noun pattern.
Tool Count2/5A single tool for a project scaffolding server is too few; expected more tools like create, scaffold, or config to cover the domain.
Completeness2/5The server only provides a preview operation, lacking any scaffolding or writing capabilities, leaving significant gaps in the tool surface.
Average 4.5/5 across 1 of 1 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- 5 of 5 community issues answered or closed in the last 6 months
- 143 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
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses file placement, optional side effects (git init, dependency install, GitHub repo creation), and the failure/skip behavior for existing directories. Since no annotations are provided, the description carries the burden and handles it well, though it omits GitHub auth requirements (which appear in schema).
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?
Four sentences, each informative: purpose, file path/effects, schema prerequisite, and merge guidance. No fluff, front-loaded with the action, and 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 9-parameter tool with nested objects and no output schema, the description covers the essential behavior: where files go, optional actions, the schema precondition, and the merge edge case. It does not describe return values or detailed error handling, but those are less critical and the schema covers parameters.
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?
All 9 parameters have schema descriptions, so baseline is 3. The description adds context about the directory/name relationship and merge semantics, but these are largely covered in the schema. No substantial per-parameter insight beyond 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?
States the core action clearly: "Generate a project to disk." and specifies output location and optional side effects (git init, install, GitHub repo). This distinguishes it from sibling tools like packkit_schema (which provides presets) and packkit_preview (likely a dry-run).
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 instructs to call packkit_schema first, with a rationale ("picking the preset by guess is how projects end up the wrong shape"). Also provides specific guidance for non-empty directories: pass merge: true rather than failing. This is strong when-to-use guidance relative to 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?
Since no annotations are provided, the description bears full responsibility. It clearly states 'without writing anything' and 'side-effect free', indicating a non-destructive, read-only operation. However, it could explicitly confirm that it only reads data and does not modify state.
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, no filler. The first sentence front-loads the core purpose and behavior ('Show the project structure...without writing anything'). The second sentence provides usage guidance. Every phrase adds value.
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?
The tool has 3 parameters (1 required), no output schema, and no annotations. The description sufficiently covers the tool's function (preview file tree and stack summary), its non-destructive nature, and when to use it. No major gaps remain.
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 for parameters is 100%, so the baseline is 3. The description does not add extra context beyond the schema (e.g., data types, constraints, or examples). It mentions 'name', 'preset', 'options' but no additional semantics.
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 specific verbs ('Show', 'check', 'prefer it over scaffolding') and clearly states the tool produces a full file tree and stack summary without writing anything. It uniquely identifies the tool as a dry-run preview, distinguishing it from scaffolding.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('to check layout before committing', 'show the user what they are about to get') and when not to ('prefer it over scaffolding to a throwaway directory'). Also highlights that it is cheap and side-effect free, guiding preference.
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?
No annotations are provided, so the description carries the full burden. It clearly states the tool returns JSON and describes the content, but it doesn't explicitly state whether the operation is read-only or has side effects. However, given the tool's name ('schema') and that it 'returns' data, it is clearly non-destructive. The description adds useful context about the range of presets and the consequence of not using it, which goes beyond a basic description.
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 but remains highly readable. It starts with 'START HERE' to immediately signal priority, then states the action, the timing, and the rationale. Every word earns its place, with no fluff. It is well-structured and memorable.
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 tool with no parameters and no output schema, the description provides sufficient context: what it does, why to use it, when to use it, and the variety of options it returns. It also differentiates itself from siblings by positioning itself as the prerequisite step. The description is complete for its intended purpose.
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, so there is nothing to explain. The baseline for 0-parameter tools is 4. The description does not mention parameters, which is fine because none exist. It adequately communicates the tool's function without needing to cover parameter details.
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 'Returns every Packkit option, preset, and shortcut alias as JSON.' It uses a specific verb ('returns') and a specific resource ('every Packkit option, preset, and shortcut alias'). The 'START HERE' directive and comparison with siblings (preview, scaffold) distinguish it as the discovery/entry-point 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?
The description explicitly says 'Call this before scaffolding' and explains why: 'so you pick a preset that matches what the user actually wants' and warns that 'guessing without reading them is the main cause of scaffolding the wrong shape.' This gives clear when-to-use guidance and implies that for scaffolding-related tasks, this tool should precede others.
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/PackkitLabs/create-packkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server