commands

Pack: tldr-pages · Endpoint: https://gateway.pipeworx.io/tldr-pages/mcp

List commands.

Parameters

NameTypeRequiredDescription
platformstringno
languagestringno

Example call

Arguments

{
  "platform": "linux",
  "language": "en"
}

curl

curl -X POST https://gateway.pipeworx.io/tldr-pages/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"commands","arguments":{"platform":"linux","language":"en"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('commands', {
  "platform": "linux",
  "language": "en"
});

Response shape

Always returns: platform, language, count, commands

FieldTypeDescription
platformstringPlatform filter used
languagestringLanguage code used
countnumberNumber of commands returned
commandsarrayList of command names
Full JSON Schema
{
  "type": "object",
  "properties": {
    "platform": {
      "type": "string",
      "description": "Platform filter used"
    },
    "language": {
      "type": "string",
      "description": "Language code used"
    },
    "count": {
      "type": "number",
      "description": "Number of commands returned"
    },
    "commands": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of command names"
    }
  },
  "required": [
    "platform",
    "language",
    "count",
    "commands"
  ]
}

Connect

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

{
  "mcpServers": {
    "tldr-pages": {
      "url": "https://gateway.pipeworx.io/tldr-pages/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026