get_pack_tools

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

Get tool definitions for a specific pack (e.g., ‘weather’, ‘stocks’). Returns tool names, descriptions, parameters, and requirements. Use before calling a tool to verify its interface.

Parameters

NameTypeRequiredDescription
slugstringyesPack slug (e.g., weather, pokemon, github)

Example call

Arguments

{
  "slug": "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":"get_pack_tools","arguments":{"slug":"weather"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_pack_tools', {
  "slug": "weather"
});

More examples

{
  "slug": "stocks"
}

Response shape

Always returns: slug, gateway_url, tool_count, tools, connect

FieldTypeDescription
slugstringPack slug
gateway_urlstringMCP gateway URL for the pack
tool_countnumberNumber of tools in the pack
toolsarrayList of tools in the pack
connectobjectConnection instructions
Full JSON Schema
{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "description": "Pack slug"
    },
    "gateway_url": {
      "type": "string",
      "description": "MCP gateway URL for the pack"
    },
    "tool_count": {
      "type": "number",
      "description": "Number of tools in the pack"
    },
    "tools": {
      "type": "array",
      "description": "List of tools in the pack",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Tool name"
          },
          "description": {
            "type": "string",
            "description": "Tool description"
          },
          "parameters": {
            "type": "object",
            "description": "Tool input schema"
          }
        },
        "required": [
          "name",
          "description",
          "parameters"
        ]
      }
    },
    "connect": {
      "type": "object",
      "description": "Connection instructions",
      "properties": {
        "claude_desktop": {
          "type": "object",
          "properties": {
            "mcpServers": {
              "type": "object"
            }
          }
        },
        "claude_code": {
          "type": "string",
          "description": "Claude Code CLI command"
        }
      }
    }
  },
  "required": [
    "slug",
    "gateway_url",
    "tool_count",
    "tools",
    "connect"
  ]
}

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.

Regenerated from source · build May 9, 2026