releases

Pack: watchmode · Endpoint: https://gateway.pipeworx.io/watchmode/mcp

Return recent or upcoming streaming releases on Watchmode; filter by date range, streaming source IDs, content type, and region. Use to track new additions to services.

Parameters

NameTypeRequiredDescription
start_datestringno
end_datestringno
limitnumberno
regionsstringno
source_idsstringno
source_typesstringno
typesstringno
regions_pricingstringno

Example call

Arguments

{
  "start_date": "2024-01-01",
  "end_date": "2024-01-31"
}

curl

curl -X POST https://gateway.pipeworx.io/watchmode/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"releases","arguments":{"start_date":"2024-01-01","end_date":"2024-01-31"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('releases', {
  "start_date": "2024-01-01",
  "end_date": "2024-01-31"
});

More examples

{
  "start_date": "2024-02-01",
  "limit": 50,
  "regions": "US",
  "types": "movie"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Recent or upcoming releases matching criteria"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "watchmode": {
      "url": "https://gateway.pipeworx.io/watchmode/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026