A streamable HTTP testing and debugging server that wraps httpbin functionality into two simple tools: get and post. You can inspect request/response cycles, test status codes, add delays, and generate UUIDs or base64 data. It's the kind of thing you reach for when building or debugging HTTP integrations and need a reliable echo endpoint that shows you exactly what you sent. Part of the Pipeworx gateway ecosystem, so you can either use it standalone or access it alongside 250+ other data sources through their unified endpoint. The ask_pipeworx interface lets you query in plain English instead of calling tools directly.
httpbin MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get | Echo a GET. |
post | Echo a POST. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"httpbin": {
"url": "https://gateway.pipeworx.io/httpbin/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Httpbin data" })
The gateway picks the right tool and fills the arguments automatically.
MIT