get

Pack: httpbin · Endpoint: https://gateway.pipeworx.io/httpbin/mcp

Send a GET request to httpbin.org and receive back the echoed request: query parameters (query object), custom headers, origin IP, and User-Agent. Use for HTTP debugging.

Parameters

NameTypeRequiredDescription
queryobjectno
headersobjectno

Example call

Arguments

{
  "query": {
    "search": "httpbin",
    "limit": 10
  },
  "headers": {
    "X-Custom-Header": "value"
  }
}

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":"get","arguments":{"query":{"search":"httpbin","limit":10},"headers":{"X-Custom-Header":"value"}}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get', {
  "query": {
    "search": "httpbin",
    "limit": 10
  },
  "headers": {
    "X-Custom-Header": "value"
  }
});

More examples

{
  "query": {
    "page": 1
  }
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from httpbin GET endpoint"
}

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.

Regenerated from source · build July 6, 2026