sassy_http
Make HTTP requests to any URL with configurable method, headers, and body. Use for quick API calls and testing.
Instructions
Make an HTTP request. Lightweight alternative to web_inspector for quick API calls.
method: GET, HEAD, OPTIONS, POST, PUT, PATCH, DELETE headers: JSON object of headers, e.g. {"Authorization": "Bearer xxx"} body: request body (string or JSON) allow_mutating: required True for state-changing verbs (POST, PUT, PATCH, DELETE). The MCP tool surface is reachable by an LLM that may be partially adversarial; gating mutating verbs behind an explicit flag stops an "innocent fetch" prompt from being steered into a DELETE against an internal service.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| body | No | ||
| method | No | GET | |
| headers | No | ||
| allow_mutating | No | ||
| timeout_seconds | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |