Skip to main content
Glama
HyperRouteAI

hyperroute-mcp

Official
by HyperRouteAI

my_tools

Lists user-declared tools with their triggers and stance. Use when querying known tools or before updating/removing a tool to get the right ID.

Instructions

List the tools the USER has declared as their own (__own__:… ids), each with its triggers verbatim — the sentences saying when it should be used — and its stance. Call this when the user asks what HyperRoute knows they have, or before updating/removing one so you use the right id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

A4.6/5.0
Behavior4/5

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

The description implies a read-only operation by stating 'List', but does not explicitly state that no side effects occur. Given the absence of annotations, the description carries the full burden; however, the action is self-evidently non-destructive, so this is adequately transparent.

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, containing two sentences that front-load the purpose and provide usage context. Every sentence adds value without redundancy.

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?

The description explains what the tool returns (tools with triggers and stance) and when to call it, which is sufficient for a low-complexity tool with no parameters. It does not detail the exact output schema, but that is not required given the simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has no parameters, and the schema is empty, so the baseline of 4 applies. No additional parameter explanation is needed.

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 specifies the tool lists user-declared tools with their triggers and stance, and distinguishes it from sibling tools like 'my_tool_report' by focusing on the user's own declarations. The phrase 'List the tools the USER has declared as their own' is a specific verb-resource combination.

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

Usage Guidelines5/5

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

Explicit guidance is given: 'Call this when the user asks what HyperRoute knows they have, or before updating/removing one so you use the right id.' This clearly states when to use the tool and provides a rationale for retrieving IDs before modifications.

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