Introduction
The CreatorDB MCP connector allows an AI client such as Claude to call the CreatorDB API 3.0 server directly from a prompt. Once connected, the assistant can search the CreatorDB index of YouTube, Instagram, and TikTok creators and pull profile, performance, audience, content, contact, sponsorship, and brand-side data using natural language. It does not require using a SaaS UI or manual API calls. The connector exposes 45 tools across six areas: YouTube, Instagram, TikTok, sponsors, search, and account usage. You authenticate with your existing CreatorDB API 3.0 key.Unlike CreatorDB Agentic Skills which installs into Claude Code, the MCP connector works in the Claude apps (web, desktop,
mobile) and other MCP-capable clients such as ChatGPT.
- Hosted connector — add
https://mcp.creatordb.app/mcpas a custom connector in your AI client. This is the straightforward option and shown below. - Local install — run the open-source server yourself with
npx. For details, see Local install below.
What you’ll need
- A CreatorDB API 3.0 key. For details, see Authentication.
Don’t have one yet? Contact our sales team or email
hello@creatordb.app. - An MCP-capable AI client. The screenshots below use the Claude desktop app. The same concept applies to ChatGPT and other AI clients with different menu names. For details, see Using other AI clients.
Connecting via the hosted connector
The following steps add the hosted connector athttps://mcp.creatordb.app/mcp to the Claude AI agent.
1
Add a custom connector.
a. Open Claude and go to Settings → Connectors.
b. Click Add. A drop-down menu appears.
c. Select Add custom Connector.
The Add custom connector window appears.
d. Enter the connector name, for example
e. Paste the CreatorDB MCP server url (https://mcp.creatordb.app/mcp) in the Remote MCP server URL field.
f. Click Add.

g. Click Connect.
The Claude login page appears.
h. Optional: Log in to your Claude account.
The Connect CreatorDB window appears.
b. Click Add. A drop-down menu appears.

The Add custom connector window appears.
d. Enter the connector name, for example
CreatorDB MCP. e. Paste the CreatorDB MCP server url (https://mcp.creatordb.app/mcp) in the Remote MCP server URL field.
f. Click Add.

The Claude login page appears.

The Connect CreatorDB window appears.

2
Authorize with your API key.
The CreatorDB MCP server only accepts API keys that are API 3.0 version or above. Check your API key is not an older version.
b. Click Connect.
The Open Claude? window appears.

The Claude desktop app opens and displays the Connectors page


Verifying the connection
After you connect the CreatorDB connector, confirm that Claude can see the server’s tools and that a tool call succeeds. How you list the tools depends on which Claude interface you connected from. The final tool-call check is the same everywhere.On Team and Enterprise plans, only Owners can add the CreatorDB
connector. Once it’s added, each member connects to and enables it
individually, so the tools appear only after you’ve enabled it for your own
account.
-
Confirm the CreatorDB tools are available.
Follow the steps for the interface you connected from.Claude web or desktop
a. Open Settings.b. Click Connectors.c. Find CreatorDB and click Manage to expand it.
The connector’s tools are listed below its name.Claude Code
a. Run /mcp in your Claude Code session.b. Select the creatordb server.
Claude Code lists the server’s tools and its authentication status. -
Check that the expected CreatorDB tools appear:
CreatorDB tools list
- Get api usage
- Get instagram audience
- Get instagram contact
- Get instagram content detail
- Get instagram performance
- Get instagram performance history
- Get instagram profile
- Get instagram sponsorship
- Get sponsor audience
- Get sponsor creators
- Get sponsor information
- Get sponsor performance
- Get sponsor summary
- Get tiktok audience
- Get tiktok contact
- Get tiktok content detail
- Get tiktok performance
- Get tiktok performance history
- Get tiktok profile
- Get youtube audience
- Get youtube contact
- Get youtube content detail
- Get youtube performance
- Get youtube performance history
- Get youtube profile
- Get youtube sponsorship
- Get youtube subtitles download
- Get youtube subtitles meta
- List instagram niches
- List sponsors
- List tiktok niches
- List youtube niches
- List youtube topics
- Search creators nls
- Search instagram
- Search instagram content
- Search sponsors
- Search tiktok
- Search tiktok content
- Search youtube
- Search youtube content
- Submit instagram creators
- Submit sponsor
- Submit tiktok creators
- Submit youtube creators
-
Send a test prompt that maps to a CreatorDB tool, for example:
Use CreatorDB to look up the YouTube profile for @MrBeast. -
Approve the tool call when Claude requests it. Click Allow in the web or
desktop dialog, or accept the prompt in Claude Code.
Claude runs the CreatorDB tool and returns the result. The connection is working.
Updating MCP server tools
On July 28, 2026, the fractional calls feature was launched on the CreatorDB API. As a result, six creator data endpoints —profile, performance, audience, contact, content-detail, and
sponsorship changed from GET to POST. Reconnecting to the CreatorDB MCP server refreshes the tool set so that:
- Your calls route to the new endpoints correctly.
- You get the new
fieldsoptions that allows you to request only the data you need and pay per field, capped at the full-bundle cost. For how to make fractional calls, see Fractional Calls. For details about costs, see Fields and Item Costs and API credit usage. - You get the new
Submit creatorstools for adding creators to the index.
1
Open your connector settings.
a. Open Claude.
b. Go to Settings → Connectors and find the CreatorDB MCP.
b. Go to Settings → Connectors and find the CreatorDB MCP.

2
Disconnect the CreatorDB MCP server.
a. Click CreatorDB MCP.
b. Click Disconnect.
A confirmation message appears.
b. Click Disconnect.
A confirmation message appears.

3
Confirm disconnect.
Click Disconnect.
The CreatorDB MCP server is disconnected from Claude. Existing chats that already reference CreatorDB stay readable. This only stops new calls.

The CreatorDB MCP server is disconnected from Claude. Existing chats that already reference CreatorDB stay readable. This only stops new calls.

4
Reconnect.
a. Click Connect.
b. Follow the instructions in Connecting Via the Hosted Connector to connect the CreatorDB MCP server to Claude again.
b. Follow the instructions in Connecting Via the Hosted Connector to connect the CreatorDB MCP server to Claude again.

5
Confirm and start a new conversation.
a. Go to Settings → Connectors.
b. Check that CreatorDB MCP status column shows a checkmark and a “Connected to CreatorDB MCP” confirmation message appears.
c. Start a new conversation.
The refreshed tools load when a chat begins, so an existing chat may still reference the old ones.
b. Check that CreatorDB MCP status column shows a checkmark and a “Connected to CreatorDB MCP” confirmation message appears.
c. Start a new conversation.
The refreshed tools load when a chat begins, so an existing chat may still reference the old ones.

If you choose not to disconnect the CreatorDB MCP, remove and add the connector again with the URL
https://mcp.creatordb.app/mcp achieves the same refresh. CreatorDB recommends using the disconnect and reconnect method as it is the most reliable path.Local install
If you run the connector locally with thenpx instead of the hosted URL, “reconnecting” means
updating the package rather than toggling a connector:
1
Use the latest package version.
Make sure your MCP configuration runs the package with
@latest, for example
npx -y @creatordbai/mcp-server@latest. If you pinned a specific version, update it to 1.4.1 or later.2
Restart your client.
Fully restart your client (quit and reopen Claude Desktop, restart Cursor, and so on). MCP
clients only read the package and key at startup.
Using other AI clients
The screenshots above show connecting the CreatorDB MCP to the Claude desktop app. ChatGPT and other MCP-capable clients follow a similar process of disconnecting (or removing) the connector and then reconnecting (or re-adding) it with the same URL (https://mcp.creatordb.app/mcp) and the same API key.
Menu names and interfaces will differ. For details, see the following references:
Troubleshooting
Still seeing 404 errors after reconnecting
Still seeing 404 errors after reconnecting
- Confirm you started a new conversation after reconnecting.
- Confirm the connector URL is exactly
https://mcp.creatordb.app/mcp. - Check the service is up: visiting https://mcp.creatordb.app/health should return
{"status":"ok", ...}. - If the issue persists, contact CreatorDB or email
hello@creatordb.app.
A tool doesn't exist or uses the wrong one
A tool doesn't exist or uses the wrong one
Your client may have an older cached tool list. Follow the steps in
Updating MCP server tools, then start a new conversation.
Authentication or permission errors
Authentication or permission errors
Confirm you pasted a valid CreatorDB API 3.0 key (API 2.0 keys won’t work here). For details, see Authentication.