DEV Community

CreatorAPI
CreatorAPI

Posted on

Connect OnlyFans and Fansly to Claude and ChatGPT with one MCP server

There is no official OnlyFans or Fansly API, so most builders end up with scrapers that break constantly. I wanted a native, stable option an AI agent could use directly, so I wired the endpoints the apps actually use into a Model Context Protocol server.

It exposes reads and CRM writes as MCP tools: fans, messages, media, earnings, posts, transactions and subscribers, across every connected creator, through one key.

Two ways to run it.

Local, with uvx:

{
  "mcpServers": {
    "creator-api": {
      "command": "uvx",
      "args": ["creator-api-mcp"],
      "env": { "CREATOR_API_KEY": "ca_live_your_key" }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Hosted, no install: add https://api.creator-api.com/mcp as a connector in Claude or ChatGPT and sign in. OAuth 2.1 with PKCE, verified end to end.

Package: pypi.org/project/creator-api-mcp
Docs: creator-api.com/onlyfans-api-mcp

Outbound writes are off by default, so an agent cannot send anything without you turning it on.

Top comments (0)