conorbronsdon/op3-mcp
FreeNot checkedPodcast analytics from OP3, the Open Podcast Prefix Project: downloads over time, listener geography, app share, and per-episode breakdowns. Read-only by design
About
Podcast analytics from OP3, the Open Podcast Prefix Project: downloads over time, listener geography, app share, and per-episode breakdowns. Read-only by design.
README
op3-mcp
Podcast analytics for AI agents through OP3: downloads over time, listener geography, apps, and per-episode breakdowns. Read-only.
License: MIT npm version Node Podcast X

An MCP server for OP3, the Open Podcast Prefix Project. It gives AI assistants podcast analytics that most hosting APIs do not expose: downloads over time, listener geography, the apps people listen in, and per-episode breakdowns.
Read-only by design. OP3 is an analytics service. This server only reads data. It cannot change anything, so it is safe to give an agent.
Why this exists. Most podcast hosts expose almost nothing through their API. Transistor's API, for example, returns download counts and not much else: no geography, no app share, no per-episode recency curve. OP3 has all of that, because it logs each download at the redirect. This server puts that data in front of an agent.
What is OP3?
OP3 is a free, open analytics prefix for podcasts. You add https://op3.dev/e/ in front of your enclosure URLs, and OP3 logs each download before redirecting to your real audio file. It then reports downloads, geography, and app share. Stats pages are public; the API needs a token. See https://op3.dev for details.
If your feed does not use the OP3 prefix yet, OP3 has no data for it. See "Adding the OP3 prefix" below.
Tools
| Tool | What it returns | OP3 endpoint |
|---|---|---|
op3_get_show |
Show UUID, title, podcast GUID, stats page URL, optional episode list | GET /shows/{showUuidOrPodcastGuidOrFeedUrlBase64} |
op3_show_downloads |
Monthly downloads, weekly breakdown, weekly average | GET /queries/show-download-counts |
op3_episode_downloads |
Per-episode downloads at 1/3/7/30 days and all-time | GET /queries/episode-download-counts |
op3_top_apps |
Top apps/players by download share, last 3 calendar months | GET /queries/top-apps-for-show |
op3_top_countries |
Top listener countries or regions (computed from raw records) | GET /downloads/show/{showUuid} |
op3_downloads_timeseries |
Raw download events over a date range (time, country, app, device) | GET /downloads/show/{showUuid} |
Most tools need a show UUID. Start with op3_get_show to turn a feed URL or podcast GUID into a UUID.
Every list tool takes a limit and defaults it low (10) to keep responses small. Agents pay tokens per response.
Setup
1. Get a token
- Go to https://op3.dev and sign in.
- Open your API token page and copy the token.
- For trying things out, OP3 also publishes a shared preview token,
preview07ce, which works against public shows.
2. Find your show UUID
If you know your feed URL or podcast GUID, ask the assistant to run op3_get_show with it and it will return your UUID. You can also read the UUID from your show's OP3 stats page URL: https://op3.dev/show/{showUuid}.
3. Configure your MCP client
Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"op3": {
"command": "npx",
"args": ["-y", "@conorbronsdon/op3-mcp"],
"env": {
"OP3_API_TOKEN": "your-op3-token"
}
}
}
}
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"op3": {
"command": "npx",
"args": ["-y", "@conorbronsdon/op3-mcp"],
"env": {
"OP3_API_TOKEN": "your-op3-token"
}
}
}
}
4. Verify
Ask your assistant: "Look up my show on OP3" with your feed URL, then "How many downloads did it get last month?"
Adding the OP3 prefix (if you are not on OP3 yet)
OP3 only has data once downloads route through its prefix. To start:
- In your podcast host, prepend
https://op3.dev/e/to your episode audio URLs. Many hosts (Transistor, Buzzsprout, and others) have a one-click OP3 toggle. Check your host's settings for an "OP3" or "analytics prefix" option. - New downloads will start being logged. Historical downloads from before you added the prefix are not backfilled.
- Find your show on https://op3.dev and note its stats page URL, which contains your show UUID.
Limitations
Read these so you know what the numbers mean.
- Geography is a computed sample, not an exact total. OP3 has no country-level aggregate endpoint.
op3_top_countriespulls raw download records and counts them by country on the client side. The result is representative, not a precise lifetime figure. OP3 returns raw records oldest-first, so the tool defaults to the last 90 days (window_days) when you do not pass an explicitstart— otherwise the sample would be the show's oldest downloads, not recent listeners. Within the window, records are still sampled oldest-first, so on a high-volume show amax_recordssample skews toward the start of the window; the response includessampleHitCapso you can tell when the window held more records than were sampled. Raisemax_records(cap 20000) for a larger, more representative sample at the cost of speed and rate-limit headroom. - No device breakdown tool. OP3's raw records include a
deviceTypeanddeviceName, but there is no aggregate device query. You can see per-record device info viaop3_downloads_timeseries. App share is available and exposed throughop3_top_apps. - Top apps covers the last three calendar months only. That window is fixed by OP3, not configurable.
- Data starts when the prefix was added. OP3 cannot report on downloads that never went through its redirect.
- Bots are excluded by default in OP3's download queries, which is usually what you want.
- Rate limits are not publicly documented. Keep
limitandmax_recordsmodest. The server surfaces a clear error on HTTP 429.
Typed errors
API failures are mapped to a typed error hierarchy (OP3APIError base, with AuthError, RateLimitError, NotFoundError, ValidationError, and ServerError subclasses keyed off HTTP status) in src/errors.ts:
AuthError(401/403) — the OP3 token is missing or invalid.RateLimitError(429) — too many requests against the OP3 API.NotFoundError(404) — the show, feed, or resource doesn't exist (or isn't on OP3 yet).ValidationError(400) — a malformed or invalid request parameter.ServerError(5xx) — a failure on OP3's side; the specific status (500, 502, 503, ...) is preserved in the message.OP3APIError— the base class, used as a fallback for unmapped status codes or network failures.
Every tool call still returns the same isError: true response shape on failure — the typed hierarchy just makes the message specific to what went wrong instead of a single generic "API error" string.
Development
git clone https://github.com/conorbronsdon/op3-mcp.git
cd op3-mcp
npm install
npm run build
npm test
Run locally:
OP3_API_TOKEN=your-token npm start
Tests mock fetch and make no network calls.
Contributing
Issues and pull requests are welcome. If an OP3 endpoint changes shape, or there is an aggregate query worth wrapping as a tool, open an issue describing what you want and the OP3 endpoint it maps to. Keep the read-only contract: this server reports analytics, it does not change anything.
About
Built and maintained by Conor Bronsdon. I host the Chain of Thought podcast, which covers AI infrastructure, developer tools, and how practitioners actually use this stuff. I built this to pull honest listener analytics into the agent workflows that run the show.
Companion tools:
- podcast-benchmark: benchmark your show against peers on public signals. The public-data complement to your own private OP3 analytics here.
- Transistor-MCP: the Transistor.fm MCP server. Episodes, transcripts, and the download counts that OP3 fills out with geography and apps.
- substack-mcp: read posts and manage drafts on Substack, safe for agent workflows.
- podcastindex-mcp: the Podcast Index MCP server, search by person or topic, trending shows, feed health.
- ai-tools-for-creators: a curated list of AI skills and MCP servers for people who ship ideas for a living.
More at chainofthought.show and on X.
Disclaimer
This is an independent personal project, not affiliated with, sponsored by, or endorsed by any company. All views expressed are my own.
License
MIT
Installing conorbronsdon/op3-mcp
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/conorbronsdon/op3-mcpFAQ
Is conorbronsdon/op3-mcp MCP free?
Yes, conorbronsdon/op3-mcp MCP is free — one-click install via Unyly at no cost.
Does conorbronsdon/op3-mcp need an API key?
No, conorbronsdon/op3-mcp runs without API keys or environment variables.
Is conorbronsdon/op3-mcp hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install conorbronsdon/op3-mcp in Claude Desktop, Claude Code or Cursor?
Open conorbronsdon/op3-mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
LibreOffice Tools
Enables AI agents to read, write, and edit Office documents via LibreOffice with token-efficient design. Supports multiple formats including DOCX, XLSX, PPTX, a
by passerbyflutterdannote/figma-use
Full Figma control: create shapes, text, components, set styles, auto-layout, variables, export. 80+ tools.
by dannoteLogo.dev
Search and retrieve company logos by brand or domain. Customize size, format, and theme to match your design needs. Accelerate design, prototyping, and content
by NOVA-3951Design Inspiration Server
Searches top design platforms like Dribbble and Behance to provide UI inspiration, color palettes, and layout patterns via the Serper API. It allows users to re
by YonasValentinPIX4Dmatic
Enables GUI automation for controlling PIX4Dmatic on Windows through MCP. Supports launching, focusing, capturing screenshots, sending hotkeys, clicking UI elem
by jangjo123Figma
Extract design specs and assets
by Figmamcp-dockmaster
An Open-Sourced UI to install and manage MCP servers for Windows, Linux and macOS.
ariekogan/ateam-mcp
Build, validate, and deploy multi-agent AI solutions on the ADAS platform. Design skills with tools, manage solution lifecycle, and connect from any AI environm
by ariekoganthinkchainai/mcpbundles
MCP Bundles: Create custom bundles of tools and connect providers with OAuth or API keys. Use one MCP server across thousands of integrations, with programmatic
by thinkchainaiarikusi/nakkas
MCP server that turns AI into an SVG artist. One rendering engine with JSON config, AI controls all design parameters. CSS @keyframes + SMIL animations, 16+ ele
by arikusiCompare conorbronsdon/op3-mcp with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All design MCPs
