list_products

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

List the ~460 software products endoflife.date tracks (languages, frameworks, OSes, databases, devices) as slugs. These slugs feed get_product and get_cycle. Keyless. Use the search filter to find one (“postgres”, “ubuntu”, “node”).

Parameters

NameTypeRequiredDescription
searchstringnoCase-insensitive substring filter over product slugs, e.g. “post” matches “postgresql”. Optional.
limitnumbernoMax products to return (default 50, max 200).

Example call

Arguments

{
  "search": "postgres"
}

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":"list_products","arguments":{"search":"postgres"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_products', {
  "search": "postgres"
});

More examples

{
  "search": "node",
  "limit": 10
}

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