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_builderFull reference: developer docs · OpenAPI spec
You might also like
- cURL ConverterParse a curl command and emit fetch, Node https, Python requests, Ruby Net::HTTP, Go net/http, PowerShell, HTTPie, and wget equivalents.
- HTTP Message ParserParse a header block, raw request, or raw response into structured JSON with smart Set-Cookie / Cache-Control / Content-Type breakdowns.
- Cache-Control Header BuilderBuild HTTP Cache-Control headers with presets for static assets, APIs, and private responses.
- HMAC CalculatorCompute HMAC-SHA1, SHA-256, SHA-384, or SHA-512 over a message and secret — for API signing or message auth.