Chaturbate
БесплатноНе проверенRead-only MCP server exposing the Chaturbate room-stats, affiliate-earnings, and events APIs as tools.
Описание
Read-only MCP server exposing the Chaturbate room-stats, affiliate-earnings, and events APIs as tools.
README
Read-only MCP server exposing three Chaturbate APIs as tools, for use from Claude Code or any MCP client (e.g. lobehub):
| API | Endpoint | Tool | Data |
|---|---|---|---|
| Room/user stats | chaturbate.com/statsapi/ |
fetch_room_stats |
viewers, token balance, satisfaction score, broadcast status… (refreshes ~every 5 min) |
| Affiliate earnings | chaturbate.com/affiliates/apistats/ |
fetch_affiliate_stats |
per-program earnings tables (9 programs), totals, payout |
| Events feed | eventsapi.chaturbate.com/events/… |
fetch_events, build_events_feed_url, get_events_schema |
live long-poll stream: chat, tips, follows, media purchases, private messages… |
Built with the official Python MCP SDK (mcp ≥ 2.1, the release that renamed FastMCP →
MCPServer) and httpx2.
Requirements
- Python ≥ 3.10 (developed on 3.14)
- uv
Install
uv sync --dev
Configure
Copy .env.example to .env and fill in your Chaturbate account values:
cp .env.example .env # then edit
Credentials are read from the environment, with .env as a local convenience:
CHATURBATE_USERNAME— your Chaturbate accountCHATURBATE_STATS_TOKEN— Stats-API scope token. The same token authorizes both the room-stats and the affiliate-earnings endpoints.CHATURBATE_EVENTS_TOKEN— Events-API scope token for the live feed. A private scope exposes tips + private messages; a public scope omits them.
Create/manage tokens at https://chaturbate.com/statsapi/authtoken/.
.env is gitignored. Never commit a real token.
Run
Start the stdio server manually:
uv run chaturbate-mcp
For Claude Code, a project-scoped entry is committed in .mcp.json (launches via uv, no
secrets in the config — the server reads them from .env). Approve the chaturbate server
once under /mcp.
Tools
| Tool | Purpose |
|---|---|
config_status |
Which credential sets are configured (booleans, never values) |
fetch_room_stats |
One-shot stats snapshot (optionally override username/token) |
fetch_affiliate_stats |
9-program earnings report. Sends only username+token unless you supply start_date/end_date/breakdown (undocumented upstream — see note) |
fetch_events |
Stateless long-poll of the events feed; thread next_url to stream |
build_events_feed_url |
Return the base feed URL for explicit cursor control |
get_events_schema |
Reference table of the 12 event methods and their object shapes |
Streaming events
The events feed is cursor-based and stateless:
fetch_events(timeout=0)→ returns{events, next_url}(recent events + a cursor).- Pass that
next_urlback tofetch_events(next_url=…)to receive the next batch. events: []+ a validnext_urlmeans nothing new in the window — poll again.
timeout (0–90 s) is how long the server waits for new events before returning. Default to
0 for a quick peek; a long poll can exceed an MCP client's tool-call deadline.
The companion skill .claude/skills/chaturbate/ documents these workflows for Claude Code.
Tests
Offline unit tests (no network, no tokens):
uv run pytest -q
Live smoke test against the real API — it reads the account/tokens from
review/Stats Token Authorization - Chaturbate.html in memory (or CHATURBATE_* env) and
never prints or persists them:
uv run python scripts/smoke_test.py
Releasing (PyPI)
This package publishes to PyPI from GitHub Actions via a Trusted Publisher (OIDC) — no API tokens or passwords are used.
To cut a release:
- Bump
versioninpyproject.toml, commit, and push. - Tag and push the tag (must match the new version):
git tag v0.1.0 && git push origin v0.1.0 .github/workflows/publish-python.ymlruns the offline tests, builds the wheel + sdist, smoke-tests the install, then publishes tohttps://pypi.org/project/chaturbate-mcp.
The PyPI trusted publisher is registered once at https://pypi.org/manage/account/publishing/ with exactly these values (the workflow name and environment must match the file/job in this repo):
| Field | Value |
|---|---|
| PyPI Project Name | chaturbate-mcp |
| Owner | Heretek-AI |
| Repository | chaturbate-mcp |
| Workflow name | publish-python.yml |
| Environment | pypi |
Security notes
review/(a saved copy of your authtoken page — contains live tokens) andmitm_mcp_traffic.dbare gitignored and must never be committed. SeeCLAUDE.md.- Real tokens live only in
.env(gitignored) or the environment. - Events
next_urlvalues embed the events token. Treat tool output as sensitive: do not echo feed URLs verbatim into chat, logs, or files. - API error messages are redacted before they reach the client.
Caveats
- Stats are ~5 minutes stale upstream; don't treat a single snapshot as live.
- Affiliate date-range params are undocumented and unreliable — Chaturbate can answer rapid requests carrying them with HTTP 403 (throttling). The tool sends none by default.
- The affiliate/room-stats data refreshes once every ~5 minutes regardless of request rate.
- The events feed rate limit is 2000 requests/minute.
Установить Chaturbate в Claude Desktop, Claude Code, Cursor
unyly install chaturbateСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add chaturbate -- uvx chaturbate-mcpПошаговые гайды: как установить Chaturbate
FAQ
Chaturbate MCP бесплатный?
Да, Chaturbate MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Chaturbate?
Нет, Chaturbate работает без API-ключей и переменных окружения.
Chaturbate — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Chaturbate в Claude Desktop, Claude Code или Cursor?
Открой Chaturbate на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
автор: duxiaohuiSupabase
Database, auth and storage
автор: SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Chaturbate with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
