Skip to main content
Connect your coding agent to the live Fanvue API, then paste one prompt to scaffold your app. No copy-pasting docs into context, no guessing at endpoints.
1

Give your agent our API (live)

Connect the Fanvue API MCP server so the agent can call and test real endpoints as it builds:
https://mcp.fanvue.com/mcp
The agent authorizes through Fanvue’s standard OAuth flow on first use, no API keys to paste. For the full per-client setup (Claude, ChatGPT, Cursor, Claude Code, Codex), see the MCP Server page.
2

Paste the golden prompt

Drop this into your agent verbatim, then fill in the build description on the last line:
You are building an app on the Fanvue API. Before writing any code:
1. Read the Fanvue docs at https://api.fanvue.com/docs/llms-full.txt for: OAuth
   setup, scopes, and the conventions page. Follow them exactly.
2. Start from the Fanvue App Starter template: github.com/fanvue/fanvue-app-starter
3. Use pnpm for all install, dev, and build commands (required).
4. Authenticate with OAuth 2.0. Request only the scopes the app needs. Include the
   required system scopes (openid, offline_access, offline).
5. Use cursor-based pagination for list endpoints. Treat all timestamps as UTC.
6. If building for an agency, use the creator-scoped endpoints and group results by
   creatorUuid.
Then build: [describe what you want here].
Test each endpoint against the live Fanvue MCP server (mcp.fanvue.com/mcp) as you go.
The Fanvue App Starter is a Next.js + pnpm template with OAuth preconfigured, so your agent starts from working auth instead of building it from scratch.

MCP Server

Full per-client setup for the Fanvue API MCP server, plus what your assistant can do once connected.

API Conventions

Base URL, authentication, pagination, and the conventions your agent should follow.