Skip to main content
Glama

forward_proxy

Forward an HTTP request through the Ona Prox proxy server to a target URL path. Returns the response body as text

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoTarget URL path to forward the request to (default: i.pximg.net)
bodyNoRequest body
methodNoHTTP method (default: GET)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.2/5.0
Behavior3/5

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

The description adds the context that the response is returned as text, which is useful. However, it does not disclose potential side effects, network access implications, or handling of methods/body. Annotations provide only openWorldHint, so the description carries a burden it only partially fulfills.

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, well-structured sentence that front-loads the core action ('Forward an HTTP request') and states the return type. It is concise and contains no filler words.

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?

Despite good schema coverage, the description is incomplete for a proxy tool. It leaves unanswered questions: what does 'target URL path' mean exactly? How does the method parameter affect the request? Are there restrictions on target URLs? No output schema exists, so the description should clarify the response format beyond 'body as text', which it does not.

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 all three parameters adequately. The description adds no further meaning beyond what the schema provides; in fact, it introduces slight confusion by calling the url parameter a 'path' when the schema describes it as a target URL with a default hostname.

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 clearly states the tool forwards an HTTP request through the Ona Prox proxy and returns the response body as text. It distinguishes itself from sibling tools like check_host or get_file, though it uses the ambiguous phrase 'target URL path' when the actual parameter is a URL/hostname with a default value of i.pximg.net.

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?

No guidance is provided on when to use this tool versus alternatives. It does not mention any prerequisites, exclusions, or scenarios where another sibling tool (e.g., search_host) would be preferred. The description is purely functional and lacks decision-support information.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation4/5

Most tools are distinct: proxy and file are separate from host tools. However, check_host and search_host both involve the Cealing Host, and an agent might confuse which to use for a domain lookup vs availability check, though descriptions clarify.

Naming Consistency5/5

All tools use snake_case with a verb_noun pattern (check_host, forward_proxy, generate_host, get_file, search_host). No mixed conventions, very consistent.

Tool Count5/5

Five tools is within the ideal range (3-15). Each tool serves a distinct purpose, and the count feels well-scoped for the server's apparent functionality.

Completeness2/5

The tool set lacks essential operations: no delete or update for host rules, no upload or list for files, and no config options for the proxy. These gaps would cause agent failures for common workflows.

Resources