json_anything
Pack: httpbin · Endpoint: https://gateway.pipeworx.io/httpbin/mcp
Fetch a sample JSON response from httpbin.org (/json). Use to verify JSON content-type handling or as a placeholder in tests.
Example call
Arguments
{}
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":"json_anything","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('json_anything', {});
Response shape
Always returns: status, content_type, body
| Field | Type | Description |
|---|---|---|
status | number | HTTP status code |
content_type | string | Content-Type header |
body | object | string | Sample JSON response |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "number",
"description": "HTTP status code"
},
"content_type": {
"type": "string",
"description": "Content-Type header"
},
"body": {
"type": [
"object",
"string"
],
"description": "Sample JSON response"
}
},
"required": [
"status",
"content_type",
"body"
]
}
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.