Skip to main content
Glama

get_myshows_recomendations

Retrieve personalized TV show recommendations from your MyShows.me profile to discover new series based on your viewing preferences.

Instructions

Retrieves recommendations from MyShows. :return: A dictionary containing the recommendations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
selfYes

Implementation Reference

  • MCP tool handler function for 'get_myshows_recomendations', decorated with @mcp.tool() for registration and execution. Delegates to the API client's method.
    @mcp.tool() @tool_handler async def get_myshows_recomendations(self): """Retrieves recommendations from MyShows. :return: A dictionary containing the recommendations. """ return await api_client.get_myshows_recomendations()
  • Core implementation in the MyShowsAPI class that performs the JSON-RPC API call to fetch recommendations using the 'recommendation.Get' method.
    async def get_myshows_recomendations(self) -> Dict[str, Any]: """Retrieves recommendations from MyShows. :return: A dictionary containing the recommendations. """ return await self._make_request( method="recommendation.Get", id=107, params={"count": 10} )
  • The @mcp.tool() decorator registers the function as an MCP tool.
    @mcp.tool()

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/zeloras/myshows_mcp'

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