Skip to main content
Glama

hivegate_execute

Execute a cross-ecosystem transaction through HiveGate. Proxies requests to Hive services with bridge fee.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
methodNoPOST
payloadNoRequest payload
endpointYesTarget endpoint path
guest_didYesGuest DID (did:hive:guest:*)
access_tokenYesGuest access token (hgate_*)
max_fee_usdcNoMaximum fee willing to pay in USDC
target_serviceYes

Schema Changelog

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

  1. Changed1 schema field changed
    • changedInput schema / properties / target_service / enum
      Previous value: -[
      -  "hivetrust",
      -  "hivemind",
      -  "hiveforge",
      -  "hivelaw",
      -  "simpson"
      -]New value: +[
      +  "hivetrust",
      +  "hivemind",
      +  "hiveforge",
      +  "hivelaw"
      +]
  2. First observed

TDQS

A3.7/5.0
Behavior4/5

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

Annotations supply readOnly=false, idempotent=false, and destructive=false, but the description adds valuable behavioral context: requests are proxied to Hive services and a bridge fee is charged. This goes beyond the annotation flags, though it stops short of explaining error handling or response details.

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 two concise sentences, immediately stating the core action and resource. Every word contributes meaning, with no redundancy or padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 7 parameters, nested payloads, and no output schema, the description is somewhat thin. It omits the usage flow (e.g., need to register a guest first) and does not clarify response behavior or failure modes. It covers the essential function but lacks surrounding context.

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 71%, with descriptions for most parameters and enums for method and target_service. The description adds minimal semantic value beyond the schema, only hinting at the bridge fee that relates to max_fee_usdc. It neither compensates for undocumented parameters nor adds significant clarity.

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 uses specific action verbs ('execute', 'proxies requests') and clearly identifies the resource (cross-ecosystem transactions via HiveGate). It differentiates itself from siblings like register_guest and translate_intent, which serve distinct purposes.

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?

The description provides no guidance on when to use this tool versus its sibling tools. It fails to mention prerequisites (e.g., registration), alternative tools, or scenarios where this tool is the appropriate choice.

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
Disambiguation5/5

Each tool has a clearly distinct purpose: trust mapping, transaction execution, guest registration, and intent translation. No overlap or ambiguity exists between them.

Naming Consistency4/5

All tools share the 'hivegate_' prefix and mostly follow a verb_noun pattern. However, 'hivegate_execute' lacks an explicit object, which is a minor deviation from the other three.

Tool Count5/5

Four tools is well-scoped for a bridge gateway, covering the essential operations without unnecessary bloat or redundancy.

Completeness4/5

The tool surface covers registration, trust evaluation, intent translation, and execution, forming a coherent workflow. Missing operations like transaction status or trust revocation are minor gaps that can be worked around.