Check the My Quant app public surfaces
get_healthReturn a non-sensitive API and MCP compatibility heartbeat without reading or changing on-device state.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
get_healthReturn a non-sensitive API and MCP compatibility heartbeat without reading or changing on-device state.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations for read-only and idempotent, the description adds an explicit guarantee that it does not even read or change on-device state and returns only non-sensitive information. This is more restrictive than the annotations alone, so it meaningfully clarifies behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, front-loaded with the operation and resource, with no filler. It conveys the read-only guarantee and sensitivity level efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is parameterless, has no output schema, and the description covers what to expect in terms of scope and sensitivity. A specific detail about the exact response shape might be helpful, but it is a simple health probe, so what is provided is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema already covers the empty inputs. The description adds no parameter details but does not need to; the behavioral focus is appropriate for a parameterless health check.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and resource ('non-sensitive API and MCP compatibility heartbeat'), and the title reinforces the public-surface check. It is clearly a health probe, not a capabilities listing, so it distinguishes itself from the sibling list_capabilities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes it clear this is for a low-risk, read-only health/compatibility check. It gives clear context for when to call it, though it does not explicitly name alternatives or say when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
get_health and list_capabilities serve clearly distinct purposes with zero overlap—a health/heartbeat check versus a capabilities manifest. No agent would confuse the two.
Both tools follow a consistent verb_noun snake_case convention (get_health, list_capabilities). The naming pattern is uniform and predictable, though the sample is small.
Only 2 tools exist for a server claiming to be a 'market briefing' service, and neither performs any actual briefing function. Even for a minimal server, the tools feel like meta/scaffolding utilities rather than a usable surface.
The server name implies market briefings, but no tool retrieves, configures, or acts on briefings—only health checks and capability listings are exposed. Critical domain operations are entirely absent; this is a severely incomplete surface for the stated purpose.