get_connection_config
Pack: pipeworx-catalog · Endpoint: https://gateway.pipeworx.io/pipeworx-catalog/mcp
Get MCP setup instructions for connecting to Pipeworx packs. Returns connection details and gateway URLs. Use to configure your environment.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slugs | string | yes | Comma-separated pack slugs (e.g., “weather,github,jokes”) or “all” for everything |
Example call
Arguments
{
"slugs": "pipeworx-catalog"
}
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_connection_config","arguments":{"slugs":"pipeworx-catalog"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_connection_config', {
"slugs": "pipeworx-catalog"
});
More examples
{
"slugs": "weather,github,jokes"
}
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"description": "Configuration for all packs",
"properties": {
"note": {
"type": "string",
"description": "Configuration note"
},
"claude_desktop": {
"type": "object",
"properties": {
"mcpServers": {
"type": "object"
}
}
},
"claude_code": {
"type": "string",
"description": "Claude Code CLI command"
},
"endpoint": {
"type": "string",
"description": "MCP endpoint URL"
}
},
"required": [
"note",
"claude_desktop",
"claude_code",
"endpoint"
]
},
{
"type": "object",
"description": "Configuration for specific packs",
"properties": {
"claude_desktop": {
"type": "object",
"properties": {
"mcpServers": {
"type": "object"
}
}
},
"claude_code": {
"type": "string",
"description": "Claude Code CLI commands"
},
"endpoints": {
"type": "array",
"description": "MCP endpoint URLs",
"items": {
"type": "string"
}
}
},
"required": [
"claude_desktop",
"claude_code",
"endpoints"
]
}
]
}
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.