Curl HTTP Request
STDIOMCP server that allows LLMs to make HTTP requests using curl-like interface.
MCP server that allows LLMs to make HTTP requests using curl-like interface.
An MCP server that allows LLMs to make HTTP requests to any URL using a curl-like interface.
npx @michaellatman/mcp-get@latest install @mcp-get-community/server-curl
{ "mcpServers": { "@mcp-get-community/server-curl": { "runtime": "node", "command": "npx", "args": [ "-y", "@mcp-get-community/server-curl" ] } } }
The server provides a single tool called curl
that accepts the following parameters:
url
(required): The URL to make the request tomethod
(optional): HTTP method to use (default: 'GET')headers
(optional): Object containing HTTP headersbody
(optional): Request body for POST/PUT/PATCH requeststimeout
(optional): Request timeout in milliseconds (default: 30000, max: 300000){ "url": "https://api.example.com/data", "method": "POST", "headers": { "Content-Type": "application/json", "Authorization": "Bearer token123" }, "body": "{\"key\": \"value\"}", "timeout": 5000 }
{ "status": 200, "statusText": "OK", "headers": { "content-type": "application/json", "server": "nginx" }, "body": "{\"result\": \"success\"}" }
# Install dependencies npm install # Build the project npm run build # Run in development mode npm run dev
MIT