{
  "markdown": "# @ottasia/mcp-server\n\n[![npm version](https://img.shields.io/npm/v/@ottasia/mcp-server.svg)](https://www.npmjs.com/package/@ottasia/mcp-server)\n[![MIT License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-published-green)](https://registry.modelcontextprotocol.io/v0.1/servers?search=ottasia)\n[![Glama](https://glama.ai/mcp/servers/badge?serverId=AIweather-Anurag/ottasia-mcp-server)](https://glama.ai/mcp/servers/AIweather-Anurag/ottasia-mcp-server)\n\n> Where can I watch X in Y? Answer that question, in your AI assistant, for 30 Asian and Middle Eastern streaming markets.\n\nOTTASIA's Model Context Protocol server gives Claude (and any MCP-compatible client) live access to streaming availability across India, Pakistan, Bangladesh, Indonesia, Malaysia, Philippines, Singapore, Thailand, Myanmar, Cambodia, Laos, Brunei, China, Hong Kong, Japan, Korea, Taiwan, Kazakhstan, Uzbekistan, Turkey, Israel, Lebanon, Jordan, Saudi Arabia, UAE, Kuwait, Qatar, Bahrain, Oman, and Egypt.\n\nIt wraps [ottasia.com](https://ottasia.com), so the same data that powers our website is one prompt away.\n\n---\n\n## Install (Claude Desktop)\n\nAdd this to your Claude Desktop config file:\n\n- **Mac:** `~/Library/Application Support/Claude/claude_desktop_config.json`\n- **Windows:** `%APPDATA%\\Claude\\claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"ottasia\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@ottasia/mcp-server\"]\n    }\n  }\n}\n```\n\nRestart Claude Desktop. The OTTASIA tools should appear in the tool list.\n\nNo API keys. No env vars. Nothing to configure.\n\n---\n\n## Tools\n\n### `where_to_watch`\n\n> Find which streaming services carry a specific movie or TV show in a specific country.\n\n**Inputs:**\n- `title` (string, required): movie or TV show name\n- `country` (2-letter ISO code, optional, default `IN`)\n\n**Example prompts:**\n- \"Where can I watch Squid Game in Indonesia?\"\n- \"Is Pathaan available on any service in Saudi Arabia?\"\n- \"Use the ottasia where_to_watch tool to find Game of Thrones in Japan.\"\n\n### `whats_new_on`\n\n> List the latest titles added to a specific streaming service in a country.\n\n**Inputs:**\n- `provider` (slug, required): e.g. `netflix`, `prime-video`, `disney-plus-hotstar`, `wavve`, `shahid`, `viu`\n- `country` (2-letter ISO code, optional, default `IN`)\n- `limit` (number, optional, default 15, max 30)\n\n**Example prompts:**\n- \"What's new on Netflix in India this month?\"\n- \"Any new K-dramas added to Wavve in Korea?\"\n- \"List recent arrivals on Shahid in Saudi Arabia.\"\n\n### `search_titles`\n\n> Multi-result search for movies and TV shows. Returns multiple candidates so you can disambiguate before checking availability.\n\n**Inputs:**\n- `q` (string, required): search query\n- `country` (2-letter ISO code, optional, default `IN`)\n- `limit` (number, optional, default 8, max 20)\n\n**Example prompts:**\n- \"Search OTTASIA for 'the office'\"\n- \"Find all matches for 'joker' and tell me which one is the 2019 Joaquin Phoenix film.\"\n\n---\n\n## Supported countries\n\n`IN` India · `PK` Pakistan · `BD` Bangladesh · `ID` Indonesia · `MY` Malaysia · `PH` Philippines · `SG` Singapore · `TH` Thailand · `MM` Myanmar · `KH` Cambodia · `LA` Laos · `BN` Brunei · `CN` China · `HK` Hong Kong · `JP` Japan · `KR` South Korea · `TW` Taiwan · `KZ` Kazakhstan · `UZ` Uzbekistan · `TR` Turkey · `IL` Israel · `LB` Lebanon · `JO` Jordan · `SA` Saudi Arabia · `AE` UAE · `KW` Kuwait · `QA` Qatar · `BH` Bahrain · `OM` Oman · `EG` Egypt\n\n## Common providers\n\n`netflix` · `prime-video` · `disney-plus-hotstar` · `jiohotstar` · `hulu-japan` · `wavve` · `tving` · `viu` · `vidio` · `iqiyi` · `shahid` · `osn-plus` · `starzplay` · `hoichoi` · `chorki` · `zee5` · `sun-nxt` · `aha` · `eros-now` · `manorama-max` · `shemaroo-me` · `crunchyroll` · `apple-tv-plus` · `hbo-max`\n\nPass any of these as the `provider` argument to `whats_new_on`. The API will suggest near-matches if the slug is wrong.\n\n---\n\n## How it works\n\nThe MCP server is a thin client that calls public JSON endpoints on [ottasia.com](https://ottasia.com):\n\n- `/api/mcp/where-to-watch?title=...&country=...`\n- `/api/mcp/whats-new?provider=...&country=...&limit=...`\n- `/api/mcp/search?q=...&country=...&limit=...`\n\nAll TMDB data, caching, and per-country provider logic stays on the OTTASIA backend, so your installed npm package never holds an API key.\n\n### Alternate transport: HTTP/SSE\n\nIf you're integrating from a non-Claude-Desktop client (Claude API, browser-based MCP playground, custom code), you can connect directly to the hosted HTTP endpoint:\n\n```\nhttps://ottasia.com/api/mcp/sse\n```\n\nUses the MCP Streamable HTTP transport (stateless, JSON responses). Same 3 tools, same data.\n\n### Local development override\n\nTo run against a local OTTASIA dev server, set `OTTASIA_BASE_URL=http://localhost:3000` in your MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"ottasia-local\": {\n      \"command\": \"node\",\n      \"args\": [\"/absolute/path/to/this/repo/dist/server.js\"],\n      \"env\": { \"OTTASIA_BASE_URL\": \"http://localhost:3000\" }\n    }\n  }\n}\n```\n\n---\n\n## Listings\n\n- npm: [@ottasia/mcp-server](https://www.npmjs.com/package/@ottasia/mcp-server)\n- Official MCP Registry: [io.github.AIweather-Anurag/ottasia](https://registry.modelcontextprotocol.io/v0.1/servers?search=ottasia)\n- [mcp.so](https://mcp.so/server/ottasia/AIweather-Anurag)\n- [Smithery](https://smithery.ai/server/@ottasia/mcp-server)\n- [Glama](https://glama.ai/mcp/servers/AIweather-Anurag/ottasia-mcp-server)\n- [awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) (PR #6808 pending)\n- [Cline marketplace](https://github.com/cline/cline/discussions/1650) (submitted)\n\n## Links\n\n- Website: [ottasia.com](https://ottasia.com)\n- Issues: open an issue on this repo or DM [@AnuragTyagi on X](https://x.com/AnuragTyagi)\n- MCP spec: [modelcontextprotocol.io](https://modelcontextprotocol.io)\n\n## Privacy Policy\n\nThis server is a read-only lookup tool. It sends only the query your AI\nassistant makes (a title name, a streaming service, a two-letter country\ncode) to OTTASIA's public API at ottasia.com and returns streaming\navailability data with links back to ottasia.com. It does not collect,\nstore, or transmit personal data, credentials, files, or conversation\ncontent, and it requires no account or API key.\n\nFull privacy policy: https://ottasia.com/privacy\n\n## License\n\nMIT\n",
  "bytes": 6396,
  "sha": "882a1dfd49ad0281fcc1ebccad0ba3f2788f0b9e895afc850ad3de1060cb6aee",
  "repo_slug": "aiweather-anurag/ottasia-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_aiweather_anurag_ottasia_2306ba7b/readme"
}