Skip to main content
Glama

get_myshows_recomendations

Retrieve personalized TV show recommendations from your MyShows 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

  • Registration of the MCP tool using @mcp.tool() decorator and the wrapper handler function that delegates to the API client.
    @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()
  • The main handler logic in MyShowsAPI class, performing the JSON-RPC API call to fetch recommendations.
    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} )

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