list_http_statuses
Pack: httpstatus · Endpoint: https://gateway.pipeworx.io/httpstatus/mcp
List HTTP status codes, optionally filtered to a class (1, 2, 3, 4 or 5 for 1xx…5xx).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
class | number | no | Optional leading digit 1-5 to filter (e.g. 4 for 4xx). |
Example call
Arguments
{
"class": 4
}
curl
curl -X POST https://gateway.pipeworx.io/httpstatus/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_http_statuses","arguments":{"class":4}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_http_statuses', {
"class": 4
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"httpstatus": {
"url": "https://gateway.pipeworx.io/httpstatus/mcp"
}
}
}
See Getting Started for client-specific install steps.