Skip to main content
Glama
Red5d

Jupiter Broadcasting Podcast Data MCP Server

by Red5d

list_shows

Retrieve all available podcast shows from Jupiter Broadcasting for searching and episode access.

Instructions

List all available podcast shows.

Returns: List of show names available for searching and episode retrieval.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The primary handler for the 'list_shows' MCP tool. Decorated with @mcp.tool() for registration and execution. Delegates to rss_parser.get_shows() to retrieve the list of podcast shows.
    @mcp.tool() def list_shows() -> List[str]: """List all available podcast shows. Returns: List of show names available for searching and episode retrieval. """ return rss_parser.get_shows()
  • Supporting method in PodcastRSSParser class that returns the keys (show names) from the configured feeds dictionary, used by the list_shows tool handler.
    def get_shows(self) -> List[str]: """Get list of available show names.""" return list(self.feeds.keys())

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Red5d/jupiterbroadcasting_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server