KonbiniAPI

The same social data, available to AI agents through MCP.

Point a supported client at one server URL, authorize it once, and its agent can fetch public social data itself — the same endpoints as the REST API, the same infrastructure behind them, and the same credits.

If you are building software, the REST API is the one to reach for. MCP is for recurring work inside an AI or automation tool you already have open.

Hosted serverMCP

Server URL

https://mcp.konbiniapi.com
Tools
One per supported endpoint
Platforms
TikTok, Instagram, Reddit, X, LinkedIn
Credits
Same cost as the matching REST call
Hosting
Hosted by KonbiniAPI — nothing to run locally

Supported clients.

Every one of these has a tested, step-by-step setup guide. Each card is the one-line version of it — where the server URL goes in that client — and the guide has the exact steps.

Chat

Ask for social data in a conversation and get a structured answer back. Best for one-off research and for checking something before a decision.

  • ChatGPT

    Added under Settings → Apps as a custom app, with the server URL and OAuth. Once authorized it is there on web, desktop, and mobile.

    Availability depends on your plan — Plus and Pro need developer mode turned on.

  • Claude

    Added under Customize → Connectors as a custom connector, then authorized in the browser.

    Remote custom connectors are in beta; free accounts are limited to one.

Code

Give a coding agent live social data while it works — useful when you are building against the API and want the agent to see real responses.

  • Claude Code

    One command — claude mcp add --transport http — then /mcp inside a session to authorize. Add --scope user for every project.

  • Codex

    codex mcp add in the CLI, or Settings → MCP servers in the Codex app. Editing ~/.codex/config.toml works too.

  • Cursor

    Settings → MCP → Add new MCP server, type HTTP. Cursor opens the browser to link your account.

  • VS Code

    A .vscode/mcp.json in the workspace, or the global user config. Authorizes on first use in Agent mode.

    GitHub Copilot reads the same configuration.

  • Antigravity

    Manage MCP Servers → View raw config to add the URL, then Authenticate under Agent Settings → Customizations.

  • Gemini CLI

    An httpUrl entry in ~/.gemini/settings.json, then /mcp auth konbiniapi and a browser sign-in.

  • Windsurf

    Cascade → MCP Servers, or ~/.codeium/mcp_config.json directly. The OAuth flow opens the first time a tool runs.

  • Cline

    The Cline panel → MCP Servers → Remote Servers, over Streamable HTTP.

  • Replit

    Integrations → MCP Servers → Add MCP Server. Replit Agent launches the auth flow the first time it uses one.

  • Zed

    Agent Panel → Settings → Add Custom Server, in the UI or in settings JSON. Leave the Authorization header off and Zed runs OAuth itself.

Automation

Put a KonbiniAPI call inside a scheduled workflow, so a recurring report or alert runs without anyone starting it.

  • Zapier

    Apps → Add connection → MCP Client, over Streamable HTTP. Then pick a KonbiniAPI tool inside a Zap and map its inputs.

    Zapier lists MCP Client as beta.

  • n8n

    The MCP Client node when you want tools as ordinary workflow steps, or MCP Client Tool to hand them to an n8n AI Agent.

  • Make

    The MCP Client module in a scenario. Make loads the tool list itself, so you pick a tool and map inputs in the UI.

  • Pipedream

    Point an MCP-aware workflow at the server URL, load the tool list, and call the typed tool you need.

Using a client that is not on this list? The server is a standard remote MCP endpoint over HTTP with OAuth or a bearer API key, and the custom agents guide covers connecting your own. It is not on the list above because we have not tested it, not because it will not work.

One connection, then the tools are just there.

Setup is a server URL and an authorization step. After that the agent sees one tool per supported endpoint and calls them itself, with results in the same normalized shape the REST API returns.

  1. 01

    Connect the client

    Add https://mcp.konbiniapi.com in your client’s MCP settings and authorize it. Most clients use a browser login; some take a KonbiniAPI API key as a bearer token instead. The setup guide for your client says which.

  2. 02

    The agent gets the tools

    One typed tool per supported endpoint — tiktok_get_user_videos, reddit_get_subreddit_posts, linkedin_get_company, and the rest. Projection options keep results small when a workflow only needs a few fields.

  3. 03

    It calls them when asked

    A successful tool call costs the same credits as the matching REST call and comes back in the same normalized model. Usage lands in the same dashboard.

Step-by-step guides.

For the jobs where the client changes how the work is done: the exact prompt to send in a chat client, the nodes to wire up in an automation one.

ChatGPTCreator researchAsk about an account and bring its public profile and recent posts into the conversation.ChatGPTCompetitor analysisBring the competitor's actual posting history into the conversation, then reason about it.ChatGPTInfluencer vettingOne message instead of six tabs and a spreadsheet.ChatGPTBrand monitoringCheck what a brand is publishing, and what people are saying back.ClaudeCreator researchAsk about an account and bring its public profile and recent posts into the conversation.ClaudeCompetitor analysisBring the competitor's actual posting history into the conversation, then reason about it.ClaudeInfluencer vettingOne message instead of six tabs and a spreadsheet.ClaudeBrand monitoringCheck what a brand is publishing, and what people are saying back.ZapierMonitor creator growthScheduled profile tracking across all five supported platforms — no manual checking.ZapierWeekly competitor reportYour team gets a competitor social summary every week without anyone lifting a finger.ZapierTrack follower changesDetect when any account gains or loses followers — automatically.n8nMonitor creator growthSelf-hosted, scheduled profile tracking across all five supported platforms.n8nWeekly competitor reportSelf-hosted competitive monitoring — automated, recurring, no manual work.n8nTrack follower changesDetect audience shifts on any account — automatically, on your schedule.MakeMonitor creator growthScheduled profile checks for any public account, without a scraper to maintain.MakeWeekly competitor reportOne scenario, every competitor, every platform — delivered before the Monday meeting.MakeTrack follower changesPolling stands in for the webhook these platforms do not offer.PipedreamMonitor creator growthScheduled profile reads, with real code in the middle when you need it.PipedreamWeekly competitor reportCollect on a schedule, format in code, deliver wherever the team reads.PipedreamTrack follower changesDetect the movement, decide in code whether it is worth an alert.ChatGPTContent analysisGive the model the words, not the view count.ChatGPTLead researchTurn a company name into what they do, how big they are, and what they are saying.ClaudeContent analysisGive the model the words, not the view count.ClaudeLead researchTurn a company name into what they do, how big they are, and what they are saying.ZapierContent digestA scheduled brief on what was published, not just that something was.n8nContent digestA scheduled brief on what was published, not just that something was.MakeContent digestA scheduled brief on what was published, not just that something was.PipedreamContent digestA scheduled brief on what was published, not just that something was.ZapierCRM enrichmentTurn a URL on a record into headcount, industry, and what they have been posting.n8nCRM enrichmentTurn a URL on a record into headcount, industry, and what they have been posting.MakeCRM enrichmentTurn a URL on a record into headcount, industry, and what they have been posting.PipedreamCRM enrichmentTurn a URL on a record into headcount, industry, and what they have been posting.Claude CodeAPI integrationFrom nothing to a working call, without leaving the editor.Claude CodeResponse explorationThe agent reads the real response before it writes the code that parses it.Claude CodeData pipelineIngestion, pagination, and backfill, written against the API's real behaviour.Claude CodeFeature prototypingBuild the whole slice with real data in it, not placeholder JSON.CodexAPI integrationFrom nothing to a working call, without leaving the editor.CodexResponse explorationThe agent reads the real response before it writes the code that parses it.CodexData pipelineIngestion, pagination, and backfill, written against the API's real behaviour.CodexFeature prototypingBuild the whole slice with real data in it, not placeholder JSON.CursorAPI integrationFrom nothing to a working call, without leaving the editor.CursorResponse explorationThe agent reads the real response before it writes the code that parses it.CursorData pipelineIngestion, pagination, and backfill, written against the API's real behaviour.CursorFeature prototypingBuild the whole slice with real data in it, not placeholder JSON.VS CodeAPI integrationFrom nothing to a working call, without leaving the editor.VS CodeResponse explorationThe agent reads the real response before it writes the code that parses it.VS CodeData pipelineIngestion, pagination, and backfill, written against the API's real behaviour.VS CodeFeature prototypingBuild the whole slice with real data in it, not placeholder JSON.

Building a product rather than a workflow?

The REST API is the primary interface, and the same endpoints back both. Start there if the work runs inside software you own.

Browse the REST API

Connect a client and run one call.

An API key works for both interfaces. The free plan includes 100 credits and no credit card.