Skip to main content
Glama
Gabry848

Curl MCP Server

by Gabry848

http_head

Send a HEAD request to retrieve headers from a URL without getting the body. Supports authentication, custom headers, and redirects.

Instructions

Perform an HTTP HEAD request using curl

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to make the HEAD request to
authNoAuthentication configuration
headersNoOptional headers to include
timeoutNoRequest timeout in seconds (default: 30)
insecureNoAllow insecure SSL connections (default: false)
followRedirectsNoFollow redirects (default: true)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description bears full behavioral burden, yet it only restates the operation. It never explains that HEAD returns headers without a body, how redirects or timeouts behave (left only to schema defaults), or the safety/read-only nature of the call.

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

Conciseness4/5

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

A single front-loaded sentence with no wasted words, though it is arguably too terse for a six-parameter tool with a nested auth object.

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?

For a tool with six parameters, a nested auth configuration, and no annotations or output schema, a one-line description is insufficient. Key behavioral facts such as the bodyless nature of HEAD responses and the reliance on schema defaults are missing.

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?

Schema description coverage is 100%, so every parameter including the nested auth object is documented in the schema. The description adds no additional meaning, which is the correct baseline when the schema does the heavy lifting.

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

Purpose4/5

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

The description states a specific verb (HEAD request) and resource (HTTP), and HEAD is a distinct HTTP method that separates it from http_get and the other method siblings. However, it offers no explicit differentiation from the many sibling HTTP tools and adds an irrelevant implementation detail ('using curl').

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?

There is no guidance on when to use this versus http_get, http_post, or curl_custom, and no statement of conditions or exclusions. The agent must infer that HEAD is for metadata-only retrieval on its own.

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