Skip to main content
Glama
xxxbrian
by xxxbrian

http_patch

Send an HTTP PATCH request to a target URL to update resources, using realistic browser fingerprinting to bypass anti-bot protections.

Instructions

Make an HTTP PATCH request to the specified URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL to send the request to
authNoAuthentication credentials
bodyNoRequest body
formNoForm data as [[key, value], ...]
proxyNoProxy to use for the request
queryNoQuery parameters as [[key, value], ...]
cookiesNoCookies to include in the request
headersNoHeaders to include in the request
multipartNoMultipart data as [[key, value], ...]
basic_authNoBasic auth credentials as [username, password]
bearer_authNoBearer token for authentication
json_payloadNoJSON payload
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

A3.6/5.0
Behavior2/5

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

No annotations are provided, and the description does not disclose any side effects, potential destructive nature, or special behavior of the request (e.g., whether it modifies resources). It only states the action, leaving behavioral transparency minimal.

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 a single, concise sentence with no redundant words. It conveys the core functionality efficiently.

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

Completeness2/5

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

Given the tool has 15 parameters and no output schema, the description is too sparse. It does not explain what the response contains, whether content is stored, or any error/redirect behavior. The minimal information may leave agents uncertain about expected outcomes beyond making the request.

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 covers all 15 parameters with basic descriptions (e.g., 'URL to send the request to'), achieving 100% coverage. However, the descriptions are terse and do not clarify distinctions between overlapping fields like auth, basic_auth, and bearer_auth beyond their obvious names. The baseline score of 3 applies because schema coverage is complete, but no added meaning is provided.

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 it makes an HTTP PATCH request to a specified URL, which is a specific verb and resource. It naturally distinguishes itself from sibling tools like http_get, http_post, etc., making its purpose unambiguous.

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

Usage Guidelines4/5

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

While it doesn't explicitly say when to use this tool over alternatives, the HTTP method name itself implies its use case (e.g., partial updates). The context of sibling tools with different HTTP verbs provides implicit guidance, which is sufficient for straightforward selection.

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