Skip to content
BEAD

cURL Command Builder

Compose an HTTP request from a form and copy a ready-to-run curl command.

Headers
:
Authentication (optional)
Body
Command
curl https://api.example.com/users \
  -H 'Accept: application/json' \
  -L
</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/curl-builder/run \
  -H "Content-Type: application/json" \
  -d '{
  "method": "GET",
  "url": "https://example.com",
  "headers": [],
  "bodyKind": "none",
  "body": "",
  "bearer": "",
  "basicUser": "",
  "basicPass": "",
  "followRedirects": false,
  "insecure": false,
  "verbose": false,
  "multiline": true
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/curl-builder/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "method": "GET",
  "url": "https://example.com",
  "headers": [],
  "bodyKind": "none",
  "body": "",
  "bearer": "",
  "basicUser": "",
  "basicPass": "",
  "followRedirects": false,
  "insecure": false,
  "verbose": false,
  "multiline": true
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_curl_builder

Full reference: developer docs · OpenAPI spec

You might also like