Skip to main content
Glama
Clamepending

ottoauthMCP

by Clamepending

Ottoauth HTTP Request

ottoauth_http_request

Make direct HTTP calls to Ottoauth endpoints for account creation and dynamic service interaction when no endpoint-specific tool matches.

Instructions

Generic Ottoauth passthrough tool. Use this if no endpoint-specific tool matches your request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON body to forward as-is to Ottoauth.
pathYesAbsolute Ottoauth path like /api/services/amazon/buy.
queryNoOptional query string parameters.
methodYesHTTP method to call.
headersNoOptional additional HTTP headers.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries the burden of disclosing behavior. It only says 'passthrough' and 'fallback', but does not mention forwarding semantics, mutating effects of non-GET methods, authentication behavior, response format, or error handling. This is a significant gap for a generic tool.

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?

Two sentences, no filler, with the core purpose and usage guidance front-loaded. Every word earns its place.

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 generic passthrough tool with no annotations and no output schema, the description is too terse. It omits what the response looks like, whether the request is forwarded as-is, potential side effects, and any constraints on acceptable paths beyond the schema. An agent would need to guess at behavior.

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 fully documents all parameters. The description adds no additional parameter detail, which is acceptable but does not exceed the baseline for fully-covered schemas.

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 explicitly identifies the tool as a generic passthrough for Ottoauth HTTP requests, which is a clear action+resource combination. It also distinguishes itself from endpoint-specific siblings by positioning itself as the fallback when no other tool matches.

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?

The description gives explicit usage context: use this tool only when no endpoint-specific tool matches the request. This implies the main exclusion (prefer specific siblings) without naming each alternative, which is adequate given the sibling list is available.

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