Skip to main content
Glama
Gabry848

Curl MCP Server

by Gabry848

http_download

Download a file from a URL and save it to a specified path, with support for authentication, custom headers, redirects, and timeouts.

Instructions

Download a file using curl

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to download from
authNoAuthentication configuration
headersNoOptional headers to include
timeoutNoRequest timeout in seconds (default: 300)
insecureNoAllow insecure SSL connections (default: false)
outputPathYesPath where to save the downloaded file
followRedirectsNoFollow redirects (default: true)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and delivers almost nothing beyond "curl": no mention of how auth failures surface, whether the file is overwritten, what happens on timeout, or the safety implications of the insecure flag. The only disclosure is the underlying curl implementation.

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

Conciseness3/5

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

The single sentence is front-loaded and waste-free, which is good, but at this length the sparseness reflects under-specification rather than disciplined concision for a 7-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 7 parameters, a nested authentication object, and no annotations or output schema, the description is far too thin. It never explains auth modes, disk-write behavior, or the relationship to sibling HTTP tools, leaving major gaps an agent must guess at.

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 already documented in the schema. The description adds nothing beyond the schema, so the baseline of 3 applies.

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 and resource ("Download a file") and names the mechanism (curl), so the purpose is unambiguous. However, it does nothing to distinguish this from siblings like http_get or http_upload, which the agent must disambiguate on its own.

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 over http_get, http_upload, or curl_custom. The agent is left to infer that this tool saves to disk while http_get may not, and no exclusions or prerequisites are stated.

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