get_cycle

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

Get a single release cycle’s support details for a product — release date, EOL, active-support end, latest patch, LTS, and any extended-support window. Use for a precise version question like “when does Python 3.9 lose support?”. product is a slug from list_products; cycle is a version like “3.12”, “20.04”, “18”. Keyless.

Parameters

NameTypeRequiredDescription
productstringyesProduct slug from list_products, e.g. “python”, “ubuntu”, “nodejs”.
cyclestringyesRelease cycle / version, e.g. “3.12”, “20.04”, “18”.

Example call

Arguments

{
  "product": "python",
  "cycle": "3.12"
}

curl

curl -X POST https://gateway.pipeworx.io/endoflife/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_cycle","arguments":{"product":"python","cycle":"3.12"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_cycle', {
  "product": "python",
  "cycle": "3.12"
});

More examples

{
  "product": "ubuntu",
  "cycle": "20.04"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026