status
Pack: httpbin · Endpoint: https://gateway.pipeworx.io/httpbin/mcp
Return given HTTP status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
code | number | yes |
Example call
Arguments
{
"code": 200
}
curl
curl -X POST https://gateway.pipeworx.io/httpbin/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"status","arguments":{"code":200}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('status', {
"code": 200
});
More examples
{
"code": 404
}
Response shape
Always returns: requested_code, status
| Field | Type | Description |
|---|---|---|
requested_code | number | HTTP status code requested |
status | number | Actual HTTP status returned |
Full JSON Schema
{
"type": "object",
"properties": {
"requested_code": {
"type": "number",
"description": "HTTP status code requested"
},
"status": {
"type": "number",
"description": "Actual HTTP status returned"
}
},
"required": [
"requested_code",
"status"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"httpbin": {
"url": "https://gateway.pipeworx.io/httpbin/mcp"
}
}
}
See Getting Started for client-specific install steps.