list_categories
Pack: remotive · Endpoint: https://gateway.pipeworx.io/remotive/mcp
All Remotive categories with slug and name.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/remotive/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_categories","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_categories', {});
Response shape
| Field | Type | Description |
|---|---|---|
00-warning | string | |
0-legal-notice | string | |
job-count | number | |
total-job-count | number | |
jobs | array |
Full JSON Schema
{
"type": "object",
"properties": {
"00-warning": {
"type": "string"
},
"0-legal-notice": {
"type": "string"
},
"job-count": {
"type": "number"
},
"total-job-count": {
"type": "number"
},
"jobs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"remotive": {
"url": "https://gateway.pipeworx.io/remotive/mcp"
}
}
}
See Getting Started for client-specific install steps.