Skip to main content
Glama
xxxbrian
by xxxbrian

http_delete

Send an HTTP DELETE request to a target URL, with support for authentication, headers, cookies, query parameters, and redirect handling.

Instructions

Make an HTTP DELETE request to the specified URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL to send the request to
authNoAuthentication credentials
proxyNoProxy to use for the request
queryNoQuery parameters as [[key, value], ...]
cookiesNoCookies to include in the request
headersNoHeaders to include in the request
basic_authNoBasic auth credentials as [username, password]
bearer_authNoBearer token for authentication
max_redirectsNoMaximum number of redirects to follow
allow_redirectsNoWhether to follow redirects
force_store_response_contentNoForce storing response content regardless of size

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.9/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility for disclosing side effects, response handling, error behavior, or authentication requirements. The one-sentence description reveals none of these, making it almost tautological.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise and clearly structured, using a single active-voice sentence. It has no redundant words or filler, making it easy to read and parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich parameter set and sibling tools, the description lacks essential context: when to use DELETE over other methods, expectations about response retrieval, or implications of the many options. It is not sufficient for an agent to decide confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides descriptions for all 11 parameters, so the baseline is 3. The tool description adds no extra meaning to the parameters; it only repeats 'specified URL' which is already in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: making an HTTP DELETE request to a specified URL. It distinguishes itself from sibling HTTP methods by explicitly naming the DELETE verb.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide any guidance on when to use this tool versus alternatives like POST or PUT, nor does it mention typical use cases such as resource deletion. It only states what the tool does without contextual cues.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.