# Manus x OnlyFans (/onlyfans-ai/mcp/manus)





import { Step, Steps } from "fumadocs-ui/components/steps";
import { Accordion, Accordions } from "fumadocs-ui/components/accordion";

<img alt="Manus × OnlyFans MCP" src={__img0} placeholder="blur" />

## What this does

Manus runs **autonomous, scheduled agents** on top of OnlyFans MCP. Wake up to a finished revenue digest, not a backlog. Drop in a recipe — daily digest, churn rescue, whale watch — or build your own Manus agent on top of 200+ tools.

Schedules and webhooks included. No code required.

<Callout>
  Manus is the right pick when you want work to **happen without you**. For interactive chat, use [Claude](/onlyfans-ai/mcp/claude) or [ChatGPT](/onlyfans-ai/mcp/chatgpt).
</Callout>

## Prerequisites

* An [OnlyFans API](https://app.onlyfansapi.com) account
* A **Manus workspace** with custom-MCP integration support
* At least one [connected OnlyFans account](/introduction/guides/connect-onlyfans-account)

## Step-by-step

Manus uses **streamable HTTP MCP**. The setup lives behind **Direct Configuration**.

### 1. Open the MCP configuration modal

In Manus, navigate:

**Settings** → **Connectors** → **Add Connector** → **Custom MCP** → **Add Custom MCP** → **Direct Configuration**

That opens the MCP configuration modal where you add a custom HTTP MCP.

### 2. Fill in the connector details

* **Transport Type** — `HTTP`
* **Server Name** — `OnlyFans MCP` (or any label you prefer)
* **Server URL**:

```
https://app.onlyfansapi.com/mcp/onlyfans-mcp
```

* **Note** *(optional)* — tell Manus when to use this MCP, e.g. *"Use for OnlyFans revenue, fans, and messaging tasks"*

### 3. Save

Click **Save**. Your agent can now call the 200+ tools exposed by the OnlyFans MCP server.

<Callout type="warn">
  Configure **approval queues** so write actions (mass-message, label updates, deletes) require a human OK. Read-only actions (earnings, fan lookups) can run unattended.
</Callout>

## Production-ready agent recipes

Drop these into Manus as scheduled agents. Each one runs end-to-end — no human, no chatter, no morning standup ritual. Adjust cadences and creator scopes to fit your roster.

### Daily revenue digest

**Schedule:** every day, 8am UTC

<Steps>
  <Step>
    Pull last-24h earnings + chargebacks across every connected creator.
  </Step>

  <Step>
    Group by creator, flag any drop >25% vs yesterday.
  </Step>

  <Step>
    Format as Slack-ready markdown.
  </Step>

  <Step>
    Post to `#ops-revenue`. No human approval required.
  </Step>
</Steps>

### Whale watch

**Schedule:** every 4 hours

<Steps>
  <Step>
    Scan new fans across the agency for spend > $200.
  </Step>

  <Step>
    Tag matches with the `vip` label via the OnlyFans API.
  </Step>

  <Step>
    Drop a message in `#ops-whales` with last message + last spend.
  </Step>

  <Step>
    Notify the assigned chatter directly.
  </Step>
</Steps>

### Churn rescue

**Schedule:** every Monday, 9am UTC

<Steps>
  <Step>
    Find subs lapsing in the next 7 days across every creator.
  </Step>

  <Step>
    Draft a personalised reactivation DM per fan. **Never auto-send.**
  </Step>

  <Step>
    Queue drafts in the ops chatter approval queue.
  </Step>

  <Step>
    Chatter reviews, edits, and ships in bulk.
  </Step>
</Steps>

## Example use cases

4 prompts to ship as scheduled Manus agents — overnight ops that pay back day one:

* *"Pull last 24h revenue and post to Slack at 8am every weekday."* — replaces a recurring n8n / Zapier workflow
* *"Find every fan whose subscription expires in 7 days and draft reactivation DMs."* — catches churn before it costs you the renewal
* *"Every 4h, label new whales (>$200 lifetime spend) and alert the assigned chatter."* — whales never slip through your dashboard
* *"Audit every creator nightly: chats with no reply >24h, list them in #ops-backlog."* — dropped chats never make it to morning standup

<Callout>
  Most tools are **account-scoped** and need the account id in the form `acct_XXXXXXXXXXXXXXX`. If you omit it, Manus will call `list_accounts` first to find one.
</Callout>

## Troubleshooting

<Accordions type="single">
  <Accordion title="Manus can't reach the MCP server">
    Confirm **Transport Type** is set to **HTTP** (not stdio) and the **Server URL** is exactly `https://app.onlyfansapi.com/mcp/onlyfans-mcp`. Then re-save the connector.
  </Accordion>

  <Accordion title="Tool calls return 429 Too Many Requests">
    MCP calls are rate-limited to **120 requests/minute** per API key. Wait a minute and retry. If you hit this often, split work across multiple API keys (one per scheduled agent).
  </Accordion>

  <Accordion title="My scheduled agent ran but did nothing">
    Check the agent's run log for an OAuth or `Authentication failed` error. Re-authorize the connector by signing in to [app.onlyfansapi.com](https://app.onlyfansapi.com) and reconnecting in Manus.
  </Accordion>

  <Accordion title="An agent did something I didn't approve">
    Lock down the connector with an approval queue for write actions. Use a **scoped, read-only API key** for analyst agents and reserve write-scoped keys for ops agents you actively supervise.
  </Accordion>
</Accordions>

## Compared to n8n / Zapier

|              | Manus                | [n8n](/integrations/n8n)     | [Zapier](/integrations/zapier) |
| ------------ | -------------------- | ---------------------------- | ------------------------------ |
| Best for     | Autonomous AI agents | Complex multi-step workflows | Trigger-based automations      |
| Skill needed | Plain English        | Light technical              | None                           |
| AI reasoning | Built-in             | Bring your own               | Limited                        |

Manus is the right pick when the work needs **judgement** — drafting DMs, ranking priorities, writing reports. Use n8n / Zapier when the work is purely **rule-based** — webhook in, action out.

## See also

* [OnlyFans MCP overview](/onlyfans-ai/mcp) — what MCP is, how it works, and supported clients
* [Claude MCP install guide](/onlyfans-ai/mcp/claude)
* [ChatGPT MCP install guide](/onlyfans-ai/mcp/chatgpt)
* [n8n integration](/integrations/n8n) — for rule-based automation
* [API Reference](/api-reference) — every endpoint exposed as an MCP tool
