search_packs
Pack: pipeworx-catalog · Endpoint: https://gateway.pipeworx.io/pipeworx-catalog/mcp
Search packs by keyword across names, descriptions, and tools (e.g., ‘weather’, ‘translate’). Returns matching packs with details. Use to find specific capabilities.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search query |
Example call
Arguments
{
"query": "weather"
}
curl
curl -X POST https://gateway.pipeworx.io/pipeworx-catalog/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_packs","arguments":{"query":"weather"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_packs', {
"query": "weather"
});
More examples
{
"query": "translate"
}
Response shape
Always returns: query, results, packs
| Field | Type | Description |
|---|---|---|
query | string | Search query used |
results | number | Number of matching packs |
packs | array | Matching packs |
Full JSON Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query used"
},
"results": {
"type": "number",
"description": "Number of matching packs"
},
"packs": {
"type": "array",
"description": "Matching packs",
"items": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Pack identifier slug"
},
"name": {
"type": "string",
"description": "Pack display name"
},
"description": {
"type": "string",
"description": "Pack description"
},
"category": {
"type": "string",
"description": "Pack category"
},
"gateway_url": {
"type": "string",
"description": "MCP gateway URL for the pack"
}
},
"required": [
"slug",
"name",
"description",
"category",
"gateway_url"
]
}
}
},
"required": [
"query",
"results",
"packs"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pipeworx-catalog": {
"url": "https://gateway.pipeworx.io/pipeworx-catalog/mcp"
}
}
}
See Getting Started for client-specific install steps.