CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Preflight

evanfollis/preflight
1 toolsHTTPregistry active
Summary

Preflight validates your MCP server artifacts against the actual publishing requirements of the MCP Registry, Smithery, and npm before you submit. It exposes a single check_publish_readiness tool that parses your server.json, package.json, smithery.yaml, and other config files, then returns actionable findings tagged with severity, evidence level, and links to the specific directory documentation each rule comes from. Every blocker includes the exact fix. It's pure validation with no rewrites, no LLM calls, and no runtime probing. Reach for it when you're packaging a server for distribution and want to catch policy violations like missing mcpName fields or malformed transport configs before hitting submit. Runs over streamable HTTP or as a direct REST API.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

1 tools
check_publish_readinessValidate whether an MCP server is publishable on real directories (MCP Registry, Smithery, npm). Provide raw artifact contents. Returns evidence-backed findings with source-linked directory rules.6 params

Validate whether an MCP server is publishable on real directories (MCP Registry, Smithery, npm). Provide raw artifact contents. Returns evidence-backed findings with source-linked directory rules.

Parameters* required
readmestring
Raw README content
manifeststring
Raw server.json content
package_jsonstring
Raw package.json content
smithery_yamlstring
Raw smithery.yaml content
pyproject_tomlstring
Raw pyproject.toml content
target_directoriesarray
Directories to check against. Defaults to all applicable.

Preflight

Validate whether your MCP server is publishable on real directories.

Preflight checks your server's actual artifacts — server.json, package.json, smithery.yaml — against the documented requirements of the MCP Registry, Smithery, and npm. Every finding includes the evidence found, the directory rule it maps to, and the exact fix.

What it checks

DirectoryHard requirements verified
MCP Registryserver.json schema, name format, packages/remotes config, transport type, npm mcpName ownership, PyPI README marker
SmitheryStreamable HTTP transport, public HTTPS endpoint, server-card presence
npmname, version, entry point (bin/main)

Each finding is tagged with:

  • Evidence level: verified_from_artifact (parsed from your file) or inferred (absence of expected input)
  • Rule type: hard_requirement (submission will fail), directory_convention, or heuristic
  • Source URL: link to the directory documentation the rule comes from

Use it

As an MCP tool

Connect to the MCP endpoint:

https://skillfoundry.synaplex.ai/products/preflight/mcp/

Call check_publish_readiness with your artifact contents:

{
  "manifest": "<your server.json content>",
  "package_json": "<your package.json content>",
  "target_directories": ["mcp_registry", "npm"]
}

As a REST API

curl -X POST https://skillfoundry.synaplex.ai/products/preflight/api/check \
  -H 'Content-Type: application/json' \
  -d '{
    "manifest": "{\"name\":\"io.github.you/your-server\",\"description\":\"...\",\"version\":\"1.0.0\",\"packages\":[{\"registryType\":\"npm\",\"identifier\":\"@you/your-server\",\"transport\":{\"type\":\"stdio\"}}]}"
  }'

Input fields

All optional — provide as many as you have:

FieldWhat it unlocks
manifestRaw server.json content — MCP Registry schema validation
package_jsonRaw package.json content — npm checks, mcpName verification
smithery_yamlRaw smithery.yaml content — Smithery build config checks
pyproject_tomlRaw pyproject.toml content — Python package checks
readmeRaw README content — documentation quality, PyPI mcp-name marker
target_directoriesArray of "mcp_registry", "smithery", "npm" — defaults to all applicable

Output

{
  "mode": "artifact_lint",
  "serverName": "io.github.you/your-server",
  "transportType": "stdio",
  "verdict": "fixable",
  "findings": [
    {
      "severity": "block",
      "category": "directory_policy",
      "check": "npm packages: package.json has 'mcpName' matching server.json 'name'",
      "evidence": "package.json missing 'mcpName' field",
      "evidenceLevel": "verified_from_artifact",
      "affectedArtifact": "package.json",
      "rule": {
        "ruleId": "mcpreg-npm-mcpname",
        "directory": "mcp_registry",
        "type": "hard_requirement",
        "sourceUrl": "https://modelcontextprotocol.io/registry/package-types",
        "lastReviewed": "2026-04-11",
        "policyPackVersion": "0.1.0"
      },
      "fix": "Add '\"mcpName\": \"io.github.you/your-server\"' to package.json."
    }
  ],
  "directoryReadiness": {
    "mcp_registry": { "state": "blocked", "hardBlockers": 1, "conventionGaps": 0, "heuristicFlags": 0 },
    "npm": { "state": "ready", "hardBlockers": 0, "conventionGaps": 0, "heuristicFlags": 0 }
  },
  "summary": { "totalChecks": 15, "passed": 13, "warnings": 1, "blockers": 1 },
  "notChecked": [
    { "reason": "Live endpoint probing is not yet supported (v1.1)", "whatItWouldVerify": "..." }
  ]
}

Verdicts:

  • checks_pass — all checked rules pass for target directories
  • fixable — has blockers, but every blocker has a concrete fix
  • not_ready — fundamental issues

What it does not do

  • Does not rewrite anything. It validates.
  • Does not verify stdio server runtime behavior.
  • Does not use LLM calls. Pure parsing and validation.
  • Does not require authentication or collect PII.
  • Does not cover non-MCP marketplaces.

Design

  • Zero dependencies — no npm packages at runtime
  • Evidence-based — every finding cites what was checked, what was found, which directory rule applies
  • Source-linked rules — every policy rule traces to actual directory documentation with a review date
  • Honest about scope — explicitly reports what was NOT checked and why

Policy packs are versioned and derived from directory documentation as of 2026-04-11:

  • MCP Registry quickstart
  • MCP Registry package types
  • MCP Registry remote servers
  • MCP server.json schema
  • Smithery publish docs
  • npm package.json docs

Endpoints

PathMethodPurpose
/healthGETHealth check
/api/checkPOSTREST API
/mcp/POSTMCP JSON-RPC (Streamable HTTP)
/server.jsonGETMCP Registry manifest
/.well-known/mcp/server-card.jsonGETSmithery server card

License

MIT


Built by Skillfoundry.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
TransportHTTP
UpdatedApr 12, 2026
View on GitHub