For AI assistants
Add CreatorScore to Claude, ChatGPT, Gemini, Cursor, or any Model Context Protocol client and vet creators without leaving the conversation — the 1–100 trust score, the full 7-agent breakdown, and a free fair-rate calculator, answered right in the chat.
The only thing you need
Paste this connector URL into your AI client, then sign in with your CreatorScore account. No API key to copy — it runs on your account and your credits.
https://creatorscore.io/api/connector/mcpThe first time you use it, a browser window opens to sign in to CreatorScore and approve access. That's it.
https://creatorscore.io/api/connector/mcpWorks on every Claude plan.
https://creatorscore.io/api/connector/mcp → sign in & approve.Free plan allows one custom connector; Pro/Max/Team/Enterprise are unlimited.
claude mcp add --transport http creatorscore https://creatorscore.io/api/connector/mcpRun it once; Claude Code handles the OAuth sign-in automatically.
https://creatorscore.io/api/connector/mcp → sign in & approve.Requires a paid plan (Plus, Pro, Business, Enterprise, or Edu). Developer mode for full MCP connectors is in beta, so the exact menu wording may shift.
Add to ~/.cursor/mcp.json (or .cursor/mcp.json in your project):
{
"mcpServers": {
"creatorscore": {
"url": "https://creatorscore.io/api/connector/mcp"
}
}
}Cursor prompts you to sign in to CreatorScore on first use.
Add to .vscode/mcp.json (note the key is servers, not mcpServers):
{
"servers": {
"creatorscore": {
"type": "http",
"url": "https://creatorscore.io/api/connector/mcp"
}
}
}Different from the GitHub Copilot agent above — this is the Microsoft 365 Copilot / Copilot Studio agent builder.
https://creatorscore.io/api/connector/mcp as the server URL and keep the transport on Streamable HTTP.Copilot Studio creates a Power Platform custom connector under the hood and requires the Streamable HTTP transport (SSE is no longer supported). Needs a Copilot Studio license / trial.
Add to ~/.codeium/windsurf/mcp_config.json (the key is serverUrl):
{
"mcpServers": {
"creatorscore": {
"serverUrl": "https://creatorscore.io/api/connector/mcp"
}
}
}Add to ~/.gemini/settings.json (use httpUrl for the streaming HTTP transport):
{
"mcpServers": {
"creatorscore": {
"httpUrl": "https://creatorscore.io/api/connector/mcp"
}
}
}The Gemini web app doesn't support custom MCP servers yet — this is for the Gemini CLI.
If your client doesn't take a remote URL directly, bridge it with mcp-remote:
{
"mcpServers": {
"creatorscore": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://creatorscore.io/api/connector/mcp"]
}
}
}mcp-remote runs locally and forwards to the connector, handling the sign-in for clients that only speak stdio.
Once connected, just ask in natural language:
You: Vet @savzuk's footprint for a campaign.
AI → (calls score_creator_footprint) Found 3 accounts — tiktok, youtube,
and instagram @savannah_zuk (cross-handle, via her link-in-bio).
Unified CreatorScore: 84/100. Worst risk: [medium] Profanity (tiktok).
1 credit used.
You: What's a fair rate for one 30s beauty TikTok, ~200k median views?
AI → (calls calculate_fair_rate) Fair rate: $2,100 · range $1,790–$2,420.
Free — no credits used.| Ask for… | What you get | Cost |
|---|---|---|
help | The full menu of what CreatorScore can do — offered when you connect. | Free |
check_account | Your credit balance and per-creator pricing. | Free |
find_creator | From a name (no handle), find the right creator — from our index first, then a Google-verified match if they're new to us. | Free |
score_creator_footprint | From a single handle, discover the creator's accounts across platforms and return the unified whole-footprint score, breakdown, and worst risks. | 1 credit per creator |
vet_creator | Vet one creator across all their accounts (you supply the handles) — unified score, per-platform breakdown, worst risks. Cached, never scrapes. | 1 credit per creator |
compare_creators | Rank 2–5 creators side by side to decide who to work with. | 1 credit per creator |
get_shareable_link | A public, no-login link to a creator's footprint score. | Free |
calculate_fair_rate | What to charge or pay for a sponsored post — a fair rate, confidence band, and breakdown (OCRS). Pure math. | Free |
buy_credits | Your balance, the credit packs, and a link to top up. | Free |
The connector runs on your CreatorScore account and its credit balance. 1 credit = 1 creator — the whole cross-platform footprint, any number of platforms. Discovery and the free tools (find_creator, calculate_fair_rate, get_shareable_link) never touch your balance.
Top up any time — just ask the assistant "buy credits" (it runs buy_credits and hands you a checkout link), or top up from your dashboard.
For scripts, servers, or MCP clients where you'd rather use a key than OAuth, install the creatorscore-mcp npm package (a thin stdio client over the public API). Needs Node 18+:
{
"mcpServers": {
"creatorscore": {
"command": "npx",
"args": ["-y", "creatorscore-mcp"],
"env": { "CREATORSCORE_API_KEY": "sk_live_..." }
}
}
}Get a key from your developer account. The REST API exposes the same endpoints directly.