The Influship MCP server exposes the API to AI agents — Claude Desktop, Cursor, ChatGPT Connectors, VS Code Copilot, and any Model Context Protocol-compatible client — as eight typed tools the agent can call directly. The server is hosted atDocumentation Index
Fetch the complete documentation index at: https://docs.influship.com/llms.txt
Use this file to discover all available pages before exploring further.
https://mcp.influship.com/mcp and uses the Streamable HTTP transport (spec 2025-06-18). Stdio-only clients connect via the mcp-remote bridge.
How it works
Your existing API key, billing, and rate limits all apply — no separate setup, no separate billing.- The agent connects to
https://mcp.influship.com/mcpwith yourX-API-Key - The agent discovers eight typed tools, each with a full description and parameter schema
- The agent picks the right tool (e.g.
search_creators) and calls it with its arguments - The result comes back in the same format as the REST API
X-API-Key.
Tools
| Tool | Method | Endpoint |
|---|---|---|
search_creators | POST | /v1/search |
autocomplete_creators | GET | /v1/creators/autocomplete |
find_lookalike_creators | POST | /v1/creators/lookalike |
match_creators | POST | /v1/creators/match |
get_creator | GET | /v1/creators/:id |
get_profile | GET | /v1/profiles/:platform/:username |
lookup_profiles | POST | /v1/profiles/lookup |
get_posts | GET | /v1/posts |
find_lookalike_creators when you have seed creator IDs; use search_creators when you only have a topic”). The agent uses these descriptions to route requests to the right tool.
Quickstart
Get an API key from the dashboard, then add the server to your client.Claude Code (CLI)
One command:--scope user to install across every project, not just the current directory.
Claude Desktop
Settings → Connectors → Add Custom Connector. Set the URL tohttps://mcp.influship.com/mcp and the header X-API-Key: <your_key>.
For older Claude Desktop versions or if you prefer a config file at ~/Library/Application Support/Claude/claude_desktop_config.json:
Cursor / Codex / VS Code
Settings → Tools & MCP → New MCP Server:Windsurf
Settings → Tools → MCP → Add server. Same JSON shape as Cursor:ChatGPT (Apps & Connectors)
Use the custom MCP connector flow. URLhttps://mcp.influship.com/mcp, auth type “API key”, header name X-API-Key.
Stdio-only clients
Some clients only support stdio transport. Bridge them withmcp-remote:
Authentication and billing
The MCP server uses your existing API key as the authentication and billing surface. There is no separate “MCP plan” — every call passes through to the regular API:- The
X-API-Keyyou set in the MCP client is forwarded toapi.influship.comon every tool call - Your subscription tier, rate limits, and usage caps apply exactly as they do via the REST API
- Invoices come through the same Stripe customer record
- Calls show up in the same usage logs in the dashboard
Pricing
MCP tool calls bill at the same per-credit price as the underlying REST endpoint. There’s no MCP surcharge.| Tool | Cost |
|---|---|
search_creators | 25 credits + 2 per result returned |
find_lookalike_creators | 1.5 per creator returned |
match_creators | 1 per creator scored |
autocomplete_creators | 0.1 per call |
get_creator | 0.1 per call |
get_profile | 0.1 per call |
lookup_profiles | 0.1 per profile in the request |
get_posts | 0.05 per post returned |
Rate limits
Per-API-key limits apply (same as the REST API). There’s also a per-IP cap of 60 requests per minute — if you hit it you’ll get a429 with a retry-after header.
If you’re connecting many agents from the same IP (a corporate proxy, for example), reach out and we’ll tune the IP cap.
Error codes
When a tool call fails, the error message is surfaced as readable text in the MCP client.| Error | Meaning |
|---|---|
400 | Missing or invalid parameter |
401 | Missing or invalid X-API-Key |
402 | Payment required |
403 | Key valid but lacks permission for this tool |
404 | Creator, profile, or post not found |
429 | Rate limit exceeded — check retry_after_seconds in the response |
5xx | Server error |
Anonymous agents (no API key)
For one-off agents that don’t have an API key — e.g. an autonomous research agent paying per-call — use the direct HTTP API with x402 or MPP. Same endpoints, same data, pay-per-request via USDC or Stripe cards. No signup required. MCP-native MPP support (where the agent pays the MCP server directly per tool call) is planned. Until then, the MCP server is API-key only.Implementation tips
- Trust tool descriptions. Each tool’s
descriptionis written for the LLM. It explains when to pick that tool over the others. Don’t override or rewrite it client-side. - Pass real IDs. Tools that take a
creator_idexpect a UUID from a previous tool’s response. Resolving byplatform + usernameis supported on lookalike, match, and posts — useful when the user types a handle. - Keep
limithonest. Largerlimitonsearch_creatorsandfind_lookalike_creatorscosts more and usually surfaces lower-quality results past the top 15–20. Start small. - Cache
get_creatorandget_profile. Both are cheap, and creator/profile data doesn’t change often. If your agent runs many sessions for the same user, cache.
Next steps
Get an API Key
Sign up and grab your key from the dashboard
API Reference
Full endpoint specs and response schemas — the tools mirror these
Pay with x402
Anonymous per-request payment for one-off agents
Pay with MPP
Stripe cards or Tempo USDC for agent-native payments