Agent integrations
MCP integration
Connect Claude, Cursor, and other agent clients to MakeInfluencer through MCP instead of the REST application workflow.
Choose OAuth or a personal key
MCP lets an agent discover MakeInfluencer tools and use them on your behalf. Claude's connector supports an OAuth sign-in flow. MCP clients without OAuth can send a personal API key as a Bearer token.
MCP is not the REST API
Claude connector
Open Settings → Connections, copy the MCP server URL, add it as a Claude custom connector, then sign in and authorize your MakeInfluencer account. OAuth does not require manually copying an API key.
https://www.makeinfluencer.ai/api/mcpMCP client config
For Cursor, Claude Desktop, and compatible clients without OAuth, create a personal key in the Developer API workspace and configure this remote server.
{
"mcpServers": {
"makeinfluencer": {
"url": "https://www.makeinfluencer.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}MCP versus REST
| Use case | REST API | MCP |
|---|---|---|
| Product backend or automation | Recommended | Not required |
| Claude or Cursor agent | Optional | Recommended |
| Versioned HTTP endpoints | Yes | No |
| Agent-discovered tools | No | Yes |
| Shared MakeInfluencer credits | Yes | Yes |
Building a backend? Continue with the REST API quickstart.