html_anything

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

Fetch a sample HTML response from httpbin.org (/html). Use to verify HTML 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":"html_anything","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('html_anything', {});

Response shape

Always returns: status, content_type, body

FieldTypeDescription
statusnumberHTTP status code
content_typestringContent-Type header
bodystringSample HTML response
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "number",
      "description": "HTTP status code"
    },
    "content_type": {
      "type": "string",
      "description": "Content-Type header"
    },
    "body": {
      "type": "string",
      "description": "Sample HTML 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.

Regenerated from source · build July 6, 2026