MCP Server
The Influship MCP server lets AI agents — Claude, Cursor, VS Code Copilot, and any MCP-compatible client — call the Influship API directly. Your agent writes TypeScript against the SDK in a sandboxed environment, so it can handle complex multi-step workflows in a single tool call. The server is generated from the same OpenAPI spec as the TypeScript SDK. It stays in sync automatically.How it works
The MCP server exposes two tools to your agent:| Tool | Purpose |
|---|---|
| Docs search | Query SDK documentation and API reference in a format optimized for LLMs |
| Code execution | Write and run TypeScript code against the Influship SDK in an isolated sandbox |
Installation
Direct invocation
Run the MCP server directly with npx:Claude Desktop / Claude Code
Add to your MCP configuration:Cursor
Add to your Cursor MCP configuration (Settings > Tools & MCP > New MCP Server):VS Code
Add to your VS Code MCP configuration (Command Palette > MCP: Open User Configuration):Remote server
A hosted MCP endpoint is available athttps://influship-api.stlmcp.com using Streamable HTTP transport. Use this when you don’t want to run the server locally.
What agents can do
Once connected, an agent can perform any operation available through the Influship API:- Search for creators — natural language queries with filters
- Find lookalikes — discover similar creators from seed profiles
- Score campaign fit — evaluate how well creators match a brief
- Fetch profiles — pull full creator data by platform and username
- Batch operations — look up multiple profiles in a single call
Authentication
The MCP server uses the same API key as the REST API and SDK. Get your key from the dashboard. Pass the key as:INFLUSHIP_API_KEYenvironment variable (local/stdio mode)X-API-Keyheader (remote HTTP mode)
Next steps
Get an API Key
Sign up and grab your key from the dashboard
SDK Guide
Use the TypeScript SDK directly for tighter integration
API Reference
Full endpoint specs and response schemas
Quickstart
Make your first API calls in under five minutes