Mcp server quality
CLI to validate, scaffold, and install Agent Skills for Cursor and agentskills.io-compatible agents
npx -y skills add luigipascal/skill-forge --skill mcp-server-qualityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Designs and implements MCP servers with clear tool names, Zod/Pydantic schemas, pagination, and actionable errors. Use when building MCP tools, integrating APIs with Cursor, or extending Orchestra MCP surfaces.
SKILL.md
1.2 KB, 235 tokens by cl100k_base, as published. Nobody here has run it
MCP Server Quality
Tool design
- Prefix tools by domain:
github_list_repos,orchestra_search - Descriptions: one line what + when + key params
- Return focused JSON; paginate large lists
- Errors: say what failed, what to try next
Stack preference
| Context | Choice |
|---|---|
| Local / Cursor stdio | TypeScript MCP SDK or Python FastMCP |
| Remote / Cloudflare | Workers + streamable HTTP (see Cloudflare MCP skill if installed) |
Implementation checklist
- Input schema with field descriptions and examples
-
readOnlyHint/destructiveHintannotations where supported - Test with MCP Inspector:
npx @modelcontextprotocol/inspector - No secrets in repo; env vars documented in README
Orchestra integration
Orchestra MCP endpoint (when server running): http://127.0.0.1:4317/mcp
Memory tools: memory_search, memory_save, memory_context — prefer these over duplicating memory logic in new MCP servers.