Manage Transistor.fm podcasts: episodes, analytics, transcripts, and webhooks.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"transistor": {
"env": {
"TRANSISTOR_API_KEY": "your-api-key-here"
},
"args": [
"-y",
"transistor-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for the Transistor.fm API. Manage podcasts, episodes, analytics, transcripts, and webhooks from your AI agent.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
MCP Security Weekly
Get CVE alerts and security updates for io.github.conorbronsdon/transistor-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for the Transistor.fm API. Manage podcasts, episodes, analytics, transcripts, and webhooks from your AI agent.

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: This is a maintained fork of gxjansen/Transistor-MCP by Guido X Jansen, who built the original server. This fork adds full API parity (all documented params, response trimming, search), the
get_download_summaryandcompare_episodestools, ISO date handling, and transcript support. The MIT license and original copyright are preserved in LICENSE.
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:
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"
}
}
}
}
Get details of the authenticated user account.
{
// No parameters needed
}
Get a pre-signed URL for uploading an audio file. Use this before creating an episode with a local audio file.
{
"filename": string // Required: Name of the audio file to upload
}
Response includes:
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, // Optional, defaults to
... [View full README on GitHub](https://github.com/conorbronsdon/transistor-mcp#readme)