search
Pack: tldr-pages · Endpoint: https://gateway.pipeworx.io/tldr-pages/mcp
Substring search across page titles.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
platform | string | no | |
language | string | no | |
limit | number | no |
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
| Field | Type | Description |
|---|---|---|
query | string | Search query used (lowercased) |
count | number | Number of matching commands |
commands | array | Matching 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.