Getting Started with Bizkol MCP: Connect Claude, Cursor, VS Code & More
Connecting the Bizkol MCP to your AI tool takes just a few minutes. Follow the setup instructions for your specific platform below.
The Bizkol MCP server URL for all platforms is:
https://mcp.bizkol.ai/api/mcp
You will need your Bizkol API key. To get one, log in to bizkol.ai, go to Settings, and generate a key under the API section.
Claude
- Open Claude and navigate to Settings → Connectors → Add custom connector
- Name the connector
Bizkol - Add the Bizkol MCP server URL:
https://mcp.bizkol.ai/api/mcp
- Enter your Bizkol API key when prompted for authentication
- Save the changes
Once connected, you can query Bizkol data directly in your Claude conversations.
Claude Code
- Open your terminal and run:
claude mcp add bizkol https://mcp.bizkol.ai/api/mcp -t http
- When prompted, enter your Bizkol API key
- Open Claude Code and run the
/mcpcommand - Select Bizkol MCP from the list of MCP integrations
- Select Authenticate to complete the connection
ChatGPT
- Open ChatGPT and go to Settings → Integrations
- Click Add integration and select Custom MCP
- Enter the Bizkol MCP server URL:
https://mcp.bizkol.ai/api/mcp
- Add your Bizkol API key as a Bearer token under the Authentication field
- Save the integration
Once connected, tag the integration in your prompts to pull live Bizkol data into your ChatGPT conversations.
Cursor
- Open Cursor and go to Settings → Cursor Settings → Tools & MCP
- Add the following Bizkol MCP configuration to your Cursor MCP settings:
{
"mcpServers": {
"bizkol": {
"url": "https://mcp.bizkol.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
- Replace
YOUR_API_KEYwith your actual Bizkol API key - Save the changes
VS Code
- Create a
.vscode/mcp.jsonfile in your VS Code workspace - Add the following MCP configuration to the file:
{
"servers": {
"bizkol": {
"url": "https://mcp.bizkol.ai/api/mcp",
"type": "http",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
- Replace
YOUR_API_KEYwith your actual Bizkol API key - Save the changes
The Bizkol MCP server is now available in your VS Code workspace.
Gemini
The Bizkol MCP server authenticates with Gemini CLI using your Bizkol API key.
- Open your terminal and run:
gemini mcp add --transport http \
--header "Authorization: Bearer YOUR_API_KEY" \
bizkol https://mcp.bizkol.ai/api/mcp
Replace YOUR_API_KEY with your actual Bizkol API key.
- Verify the server was added by running:
gemini mcp list
You should see bizkol listed among your configured MCP servers. Once added, the Bizkol MCP is available in Gemini CLI and can be used in your workflows.
What to Try First
Once connected on any platform, here are a few prompts to get you started:
- "Find me beauty creators on Instagram with 100K to 500K followers and an engagement rate above 3%."
- "Show me the performance summary for my last three campaigns."
- "Which creators in my roster have the highest average views on short-form video this month?"
- "Give me a shortlist of tech reviewers on YouTube for a product launch in the US market."
For a full overview of what the Bizkol MCP can do, see What Is Bizkol MCP?