search

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

Substring search across page titles.

Parameters

NameTypeRequiredDescription
querystringyes
platformstringno
languagestringno
limitnumberno

Example call

Arguments

{
  "query": "file"
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "compress",
  "platform": "osx",
  "limit": 5
}

Response shape

Always returns: query, count, commands

FieldTypeDescription
querystringSearch query used (lowercased)
countnumberNumber of matching commands
commandsarrayMatching command entries
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query used (lowercased)"
    },
    "count": {
      "type": "number",
      "description": "Number of matching commands"
    },
    "commands": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Command name"
          },
          "platform": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Platforms where command is available"
          },
          "language": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Languages in which page is available"
          }
        },
        "required": [
          "name",
          "platform",
          "language"
        ]
      },
      "description": "Matching command entries"
    }
  },
  "required": [
    "query",
    "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