Documentation
Everything you need to claim, track, and monetize your MCP server on Conduid.
Quick Start
Sign in with GitHub
Connect your GitHub account to get started
Claim your server
Find your server in the marketplace and claim it
Add the SDK
Install the tracking SDK to collect analytics
Claiming a Server
Conduid automatically indexes MCP servers from GitHub, npm, PyPI, and other registries. If you're the owner of a server, you can claim it to unlock the builder dashboard.
Claims are verified automatically if your GitHub username matches the repository owner. Otherwise, you can verify ownership by adding a file to your repo or through manual review.
Once claimed, you'll have access to analytics, the ability to edit your server's description, configure AI support, and enable paid subscriptions.
SDK Integration
Add the Conduid tracking SDK to your MCP server to collect install and usage analytics.
import requests
def track_install(server_slug: str):
requests.post(
"https://conduid.com/api/v2/t",
json={
"server_slug": server_slug,
"event_type": "install",
"platform": "python",
"mcp_client": "claude-desktop"
},
timeout=5
)async function trackInstall(serverSlug) {
await fetch("https://conduid.com/api/v2/t", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
server_slug: serverSlug,
event_type: "install",
platform: "node",
mcp_client: "claude-desktop"
})
});
}API Reference
The Conduid API is free and open. All endpoints return JSON.
/api/v2/serversList servers with search, filters, sort, pagination
/api/v2/servers/:slugGet server details including README and security audit
/api/v2/servers/featuredGet featured servers
/api/v2/servers/trendingGet trending servers by weekly installs
/api/v2/categoriesList all categories with server counts
/api/v2/statsPlatform statistics
/api/v2/search?q=Full-text search via Meilisearch
/api/v2/tTrack install/usage events (SDK endpoint)
Ready to get started?
Sign in with GitHub and claim your server in minutes.
Sign in with GitHub