Connector platform
Built it anywhere. List it here.
One tool call. Draft listing in 5 seconds. Edit before you publish. Zero to Hundred is the marketplace for software you can own — pay once, own forever.
List from the tool you already build in.
One MCP server reaches every AI coding tool. Prefill URLs reach every web platform.
Claude Code
One command. Tool call. Done.
claude mcp add z2h \ --env Z2H_API_KEY=YOUR_TOKEN \ -- npx -y @zerotohundred/mcp-serverSetup guide
Cursor
Paste into mcp.json. Restart. Use.
{
"mcpServers": {
"z2h": {
"command": "npx",
"args": ["-y", "@zerotohundred/mcp-server"],
"env": { "Z2H_API_KEY": "YOUR_TOKEN" }
}
}
}Setup guideAny MCP Client
Windsurf, Continue, or your own.
# Standard stdio MCP server — # point any client at it. npx -y @zerotohundred/mcp-server # Env: Z2H_API_KEY=YOUR_TOKENSetup guide
Partner platforms
Add a List on Zero to Hundred button. No SDK. No auth keys.
The integration is one URL. Build it as a link, drop it in your Share menu, attribute the funnel with source=<your-platform>. The Builder finishes the listing in Zero to Hundred's wizard. We handle everything from there.
https://zerotohundred.ai/listings/new?prefill=connector &source=your-platform &title=My%20Cool%20App &demoUrl=https%3A%2F%2Fmycoolapp.example.com &repoUrl=https%3A%2F%2Fgithub.com%2Falice%2Fmycoolapp &shortDescription=... &techStack=nextjs,supabase,tailwind &type=tool
Funnel attribution lights up immediately. Every draft created via your URL lands with created_via set to your platform name.
Building your own integration?
The public REST API is documented and stable. Personal Access Tokens for individual Builders. OAuth + PKCE for partner apps.
curl -X POST https://zerotohundred.ai/api/v1/listings \
-H "Authorization: Bearer z2h_pat_..." \
-H "Content-Type: application/json" \
-d '{
"title": "My SaaS",
"shortDescription": "One-line pitch",
"longDescription": "What it does, in 100 words.",
"type": "micro_saas",
"operatingStatus": "ready_to_launch",
"askingPrice": 199,
"demoUrl": "https://example.com",
"sourceRepoUrl": "https://github.com/me/myapp",
"source": "api"
}'