You've built an MCP server. It works locally. You're ready to list it on Smithery, AgenticMarket, or the npm MCP registry. But before you hit submit, there's a set of checks that every registry runs — and most builders don't know about them until their listing gets rejected.
This guide walks through each check and how to make sure your server passes.
Your server.json is the single most important file for registry listing. It's not just metadata — registries use it to decide whether to accept, surface, or rank your server. Here's what gets checked:
0.1.0-beta) are accepted but may be deprioritized in search.Smithery has its own configuration format. If you're publishing there, the smithery.yaml file tells Smithery how to build and run your server. Key requirements:
npm start if your actual entrypoint is different.Each registry has its own slug rules. Smithery derives a slug from your package name. AgenticMarket lets you set one. The npm MCP registry uses the npm package name directly. Common problems:
Some of these checks are mechanical — does the field exist, is the URL live, is the schema valid. These are exactly the checks that Preflight runs automatically.
Preflight is an MCP tool that audits your server package against live registry rules. You pass it your server.json (and optionally smithery.yaml), and it returns a verdict: either checks_pass or fixable with specific rules flagged and fixes prioritized.
# Example: check your server via curl
curl -X POST https://preflight.skillfoundry.workers.dev/mcp \
-H "Content-Type: application/json" \
-d '{"method":"tools/call","params":{"name":"preflight_check","arguments":{"server_json_url":"https://your-server.com/server.json"}}}'
Fix the specific field that's flagged. Re-run the check. Don't submit until you see checks_pass. Registry reviewers (human or automated) see exactly the same issues — submitting with known failures wastes your time and theirs.
For issues that automated checks can't catch — trust signals, packaging edge cases, or registry-specific quirks — a manual compliance review catches what tooling misses.
Check your server with Preflight