paidmcp.dev

Submit your MCP

Open a pull request against directory.json with your MCP entry.

  1. Fork the repository.
  2. Add your object to the mcps array in directory.json.
  3. Set listingType to live for production MCPs.
  4. Open a PR describing your endpoint, pricing, and maintainer contact.

CI will validate required fields in directory.json and run a production build before merge.

  • Working HTTPS endpoint
  • Returns valid 402 requirements on unpaid call
  • README with setup and pricing details
  • Sensible per-call pricing
  • Maintainer contact information

Entry template:

{
  "id": "your-mcp-id",
  "name": "Your MCP Name",
  "tagline": "One-line value proposition",
  "description": "What your paid MCP does.",
  "author": "your-team-or-handle",
  "github": "https://github.com/your-org/your-repo",
  "endpoint": "https://your-mcp.example.com",
  "listingType": "live",
  "trialSupported": true,
  "chains": ["base", "plasma"],
  "tools": [
    { "name": "your_tool", "description": "What it does", "priceUsdt": 0.01 }
  ],
  "tags": ["your-tag"],
  "addedAt": "2026-05-30"
}