Skip to documentation
MakeInfluencer.ai
v1

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

MCP clients call named tools and manage agent context. REST clients call versioned HTTP endpoints and manage generation polling themselves. The underlying models and credit balance are shared, but setup and documentation stay separate.

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.

POSThttps://www.makeinfluencer.ai/api/mcp
Open Claude connectors ↗

MCP 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.

mcp.json
{
  "mcpServers": {
    "makeinfluencer": {
      "url": "https://www.makeinfluencer.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_KEY"
      }
    }
  }
}

MCP versus REST

Use caseREST APIMCP
Product backend or automationRecommendedNot required
Claude or Cursor agentOptionalRecommended
Versioned HTTP endpointsYesNo
Agent-discovered toolsNoYes
Shared MakeInfluencer creditsYesYes

Building a backend? Continue with the REST API quickstart.