Skip to main content
Glama
Gabry848

Curl MCP Server

by Gabry848

http_get

Fetch data from any URL by performing an HTTP GET request with curl. Supports custom headers, authentication, redirects, and timeouts.

Instructions

Perform an HTTP GET request using curl

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to make the GET 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

B3.1/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 it discloses almost nothing. It notes the curl implementation but says nothing about error behavior on non-2xx responses, redirect handling semantics, SSL verification implications, or what the response contains. That is a significant gap for a 6-parameter network tool.

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 short sentence with the verb and resource front-loaded, and zero wasted words. It is arguably thin for a tool with a nested auth object, but it is not padded or repetitive.

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

Completeness4/5

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

Given 100% schema coverage and no output schema, the description's thinness is mitigated by rich structured parameter documentation. Still, an agent gets no sense of what a successful call returns, what happens on failure, or how auth failures surface.

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 the schema already documents every parameter including the nested auth object, timeout default, and redirect behavior. The description adds no parameter meaning beyond the schema, so the baseline 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 ('Perform an HTTP GET request') and adds the implementation detail ('using curl'). It is clear what the tool does, but it offers no differentiation from siblings like http_head or curl_custom, relying on the agent to infer the distinction from names alone.

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_post, http_head, curl_custom, or other siblings, and no mention of prerequisites or conditions. The agent must infer usage entirely from the tool name and the sibling list.

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