Skip to main content
Glama
GetSensr-io

Sensor Bio MCP Server

Official
by GetSensr-io

debug_request

Debug Sensor Bio API endpoints by making GET requests and inspecting response status, headers, and body preview.

Instructions

Low-level debugging helper: make a GET request and return {status, headers_subset, body_preview}.

Params:

  • path (str, required): may be '/v1/...' or 'v1/...'

  • query (dict[str,str], optional)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
queryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It transparently notes that it returns a limited subset (status, headers_subset, body_preview) and accepts path format variations. However, it does not disclose whether any authentication is required, potential side effects (though it's a GET), rate limits, or how headers are subset. This is adequate but not rich.

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 concise and well-structured: opening with the core purpose and return shape, followed by a clear parameter list. Every sentence earns its place, and the formatting enhances readability. No wasted words.

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?

For a low-complexity debug tool, the description is largely complete. It covers the action, return format, and parameter formats. The existence of an output schema reduces the need to explain returns, but the description still previews the return shape. It could mention what headers_subset includes or typical usage scenarios, but given the tool's simplicity, it is sufficient.

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 coverage is 0%, so the description must compensate. It adds path format details ('/v1/...' or 'v1/...') and notes query is a dict of strings, optional. However, it does not explain what the query parameter is used for (e.g., appended to URL) or provide examples. The added value over the schema is moderate but incomplete.

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 clearly states the tool makes a GET request and returns a structured response with status, headers subset, and body preview. This specific verb and resource distinguish it from sibling tools that are user/data query tools. The 'low-level debugging helper' positioning further differentiates its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'low-level debugging helper' implies a use case for raw HTTP inspection, which is useful context. However, the description does not explicitly state when to use this tool over sibling high-level getters, nor does it mention exclusions or alternatives. The guidance is implied rather than explicit.

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