← pythonbytes.fm

INDIVIDUAL MCP TOOL

get_next_livestream

Get the next scheduled Python Bytes live stream, or the one currently in progress.

pythonbytes.fmnone authenticationAvailability not checked

LIVE ENDPOINT

https://pythonbytes.fm/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_next_livestream and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

pythonbytes.fm

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.python-bytes-mcp]
url = "https://pythonbytes.fm/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "python-bytes-mcp": {
      "type": "http",
      "url": "https://pythonbytes.fm/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: python-bytes-mcp
Remote MCP URL: https://pythonbytes.fm/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "python-bytes-mcp": {
      "url": "https://pythonbytes.fm/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "python-bytes-mcp": {
      "type": "http",
      "url": "https://pythonbytes.fm/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "python-bytes-mcp",
  "transport": "streamable-http",
  "url": "https://pythonbytes.fm/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_episodes — Search Python Bytes podcast episodes by keyword.
  • search_transcripts — Search the spoken content of Python Bytes episodes by keyword.
  • get_episode — Get full details for a specific Python Bytes episode by its show number.
  • get_episodes — Get a list of every published Python Bytes episode with its show number and title.
  • get_recent_episodes — Get the most recently published Python Bytes episodes, newest first.
  • get_episode_topics — Get the individual news items covered in a Python Bytes episode.
  • get_transcript_for_episode — Get the full plain-text transcript for a Python Bytes episode.
  • get_transcript_vtt — Get the transcript for a Python Bytes episode in WebVTT format.