
This MCP server provides tools to interact with the Transistor.fm API, allowing you to manage podcasts, episodes, and view analytics. The data shown in the demo above is sample data, not real account values.
Fork notice: The original server was built by Guido X Jansen (gxjansen/Transistor-MCP). The full-API-parity pass (all documented params, response trimming, search), the get_download_summary and compare_episodes analytics tools, ISO date handling, and transcript support were contributed here and have since been merged upstream. This repository is a packaged, npm-published build (transistor-mcp) kept in sync with upstream. The MIT license and original copyright are preserved in LICENSE.
About
Built and maintained by Conor Bronsdon for the Chain of Thought podcast production workflow, where it handles episode creation, transcript uploads, and analytics pulls. Conor hosts Chain of Thought, a show about AI infrastructure and how practitioners actually build with it. More tools for creators live in ai-tools-for-creators. Find Conor on X at @ConorBronsdon.
Sibling MCP servers:
Configuration
Add the server to your MCP settings configuration file with your Transistor API key:
{
"mcpServers": {
"transistor": {
"command": "npx",
"args": ["-y", "transistor-mcp"],
"env": {
"TRANSISTOR_API_KEY": "your-api-key-here"
}
}
}
}
Or run from a local clone (after npm install && npm run build):
{
"mcpServers": {
"transistor": {
"command": "node",
"args": ["path/to/Transistor-MCP/build/index.js"],
"env": {
"TRANSISTOR_API_KEY": "your-api-key-here"
}
}
}
}
Available Tools
get_authenticated_user
Get details of the authenticated user account.
{
}
authorize_upload
Get a pre-signed URL for uploading an audio file. Use this before creating an episode with a local audio file.
{
"filename": string
}
Response includes:
- upload_url: Pre-signed S3 URL for uploading the file
- content_type: Content type to use when uploading (e.g., "audio/mpeg")
- expires_in: Time in seconds until the upload URL expires
- audio_url: Final URL to use when creating the episode
list_shows
List all shows in your Transistor.fm account, ordered by updated date (newest first). Returns a paginated list with 10 items per page.
{
"page": number,
"per": number,
"private": boolean,
"query": string
}
Note: All parameters are optional. Calling this endpoint without parameters will return the first page of shows.
list_episodes
List episodes for a specific show.
{
"show_id": string,
"page": number,
"per": number,
"query": string,
"status": string,
"order": string
}
get_episode
Get detailed information about a specific episode.
{
"episode_id": string,
"include": string[],
"fields": {
"episode": string[],
"show": string[]
}
}
get_analytics
Get analytics for a show or specific episode. Defaults to the last 14 days if no dates are provided.
{
"show_id": string,
"episode_id": string,
"start_date": string,
"end_date": string
}
create_episode
Create a new episode.
{
"show_id": string,
"title": string,
"audio_url": string,
"summary": string,
"description": string,
"transcript_text": string,
"author": string,
"explicit": boolean,
"image_url": string,
"keywords": string,
"number": number,
"season_number": number,
"type": string,
"alternate_url": string,
"video_url": string,
"email_notifications": boolean,
"increment_number": boolean
}
update_episode
Update an existing episode.
{
"episode_id": string,
"title": string,
"summary": string,
"description": string,
"transcript_text": string,
"author": string,
"explicit": boolean,
"image_url": string,
"keywords": string,
"number": number,
"season_number": number,
"type": string,
"alternate_url": string,
"video_url": string,
"email_notifications": boolean
}
get_all_episode_analytics
Get analytics for all episodes of a show. Defaults to the last 7 days if no dates are provided.
{
"show_id": string,
"start_date": string,
"end_date": string
}
list_webhooks
List all webhooks for a show.
{
"show_id": string
}
subscribe_webhook
Subscribe to a webhook for a show.
{
"event_name": string,
"show_id": string,
"url": string
}
unsubscribe_webhook
Unsubscribe from a webhook.
{
"webhook_id": string
}
Typed errors
Tool calls that fail against the Transistor.fm API return a status-specific,
human-readable message via isError: true rather than a generic Axios error.
Internally, TransistorApiClient maps every HTTP failure — authentication
(401/403), rate limiting (429), validation (400), not found (404), and
server errors (5xx) — to a typed error class in a single response
interceptor (see src/errors.ts), so the message you see always names the
failure mode and, for auth errors, points at the TRANSISTOR_API_KEY
environment variable.
Important Notes
- API requests are rate-limited to 10 requests per 10 seconds (as prescribed by the (https://developers.transistor.fm/#:~:text=API%20requests%20are%20rate%2Dlimited,to%20use%20the%20API%20again.)[Transistor API reference])
- Dates must be in "dd-mm-yyyy" format
- Page numbers start at 0
- All endpoints support:
- Sparse fieldsets: Specify which fields to return using
fields[resource_type][]
- Including related resources: Use
include[] to fetch related resources in a single request
- Include arrays use the format
["resource_name"]
- Fields objects specify which fields to return for each resource type
- All tools return data in JSONAPI format with proper relationships and metadata
Example Usage
List shows:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "list_shows",
arguments: {}
});
const resultWithParams = await use_mcp_tool({
server_name: "transistor",
tool_name: "list_shows",
arguments: {
page: 1,
per: 20,
private: true,
query: "podcast"
}
});
Get episode details:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_episode",
arguments: {
episode_id: "123456",
include: ["show"],
fields: {
episode: ["title", "summary", "description"],
show: ["title"]
}
}
});
Get show analytics:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_analytics",
arguments: {
show_id: "123456"
}
});
const resultWithDates = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_analytics",
arguments: {
show_id: "123456",
start_date: "01-01-2024",
end_date: "31-01-2024"
}
});
const episodeAnalytics = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_analytics",
arguments: {
show_id: "123456",
episode_id: "789012",
start_date: "01-01-2024",
end_date: "31-01-2024"
}
});
Update episode:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "update_episode",
arguments: {
episode_id: "123456",
title: "Updated Episode Title",
summary: "New episode summary",
description: "New detailed description",
season_number: 2,
episode_number: 5
}
});
Get all episode analytics:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_all_episode_analytics",
arguments: {
show_id: "123456"
}
});
const resultWithDates = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_all_episode_analytics",
arguments: {
show_id: "123456",
start_date: "01-01-2024",
end_date: "31-01-2024"
}
});
Manage webhooks:
const webhooks = await use_mcp_tool({
server_name: "transistor",
tool_name: "list_webhooks",
arguments: {
show_id: "123456"
}
});
const subscription = await use_mcp_tool({
server_name: "transistor",
tool_name: "subscribe_webhook",
arguments: {
event_name: "episode_created",
show_id: "123456",
url: "https://your-webhook-endpoint.com/hook"
}
});
const unsubscribe = await use_mcp_tool({
server_name: "transistor",
tool_name: "unsubscribe_webhook",
arguments: {
webhook_id: "webhook123"
}
});
Get authenticated user:
const result = await use_mcp_tool({
server_name: "transistor",
tool_name: "get_authenticated_user",
arguments: {}
});
Authorize audio file upload:
const auth = await use_mcp_tool({
server_name: "transistor",
tool_name: "authorize_upload",
arguments: {
filename: "my-episode.mp3"
}
});
const episode = await use_mcp_tool({
server_name: "transistor",
tool_name: "create_episode",
arguments: {
show_id: "123456",
title: "My New Episode",
audio_url: auth.data.attributes.audio_url
}
});
publish_episode
Publish, schedule, or unpublish an episode.
{
"episode_id": string,
"status": string,
"published_at": string
}
get_show
Get details of a single show.
{
"show_id": string
}
update_show
Update a show's metadata.
{
"show_id": string,
"author": string,
"category": string,
"copyright": string,
"description": string,
"explicit": boolean,
"image_url": string,
"keywords": string,
"language": string,
"owner_email": string,
"secondary_category": string,
"show_type": string,
"title": string,
"time_zone": string,
"website": string
}
list_subscribers
List subscribers for a private podcast.
{
"show_id": string,
"page": number,
"per": number,
"query": string
}
get_subscriber
Get details of a single subscriber.
{
"subscriber_id": string
}
create_subscriber
Add a subscriber to a private podcast.
{
"show_id": string,
"email": string,
"skip_welcome_email": boolean
}
create_subscribers_batch
Add multiple subscribers at once.
{
"show_id": string,
"emails": string[],
"skip_welcome_email": boolean
}
update_subscriber
Update a subscriber's email address.
{
"subscriber_id": string,
"email": string
}
delete_subscriber
Delete a subscriber by ID or by show + email.
{
"subscriber_id": string,
"show_id": string,
"email": string
}
Contributing
Issues and pull requests are welcome. If you hit a Transistor API endpoint this server does not cover yet, or you find a bug, open an issue with the tool name and the request you were trying to make. For changes, fork the repo, run npm install && npm run build, and open a PR describing what changed and why.
Disclaimer
All views, opinions, and statements expressed on this account are solely my own and are made in my personal capacity. They do not reflect, and should not be construed as reflecting, the views, positions, or policies of Modular. This account is not affiliated with, authorized by, or endorsed by Modular in any way.
License
MIT. This is a fork of gxjansen/Transistor-MCP; the original copyright by Guido X Jansen is preserved in LICENSE.