Skip to main content
Glama

forward_bucket

Set up standing forwarding from a bucket to a URL. Pass forward_all:true to forward every event, or condition_tree to forward only matching events (same AND/OR condition grammar the routing engine uses). Creates the destination and routing rule in one call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesDestination URL to forward to.
nameNoOptional label for the destination.
bucket_idYesThe endpoint id.
rule_nameNoOptional name for the routing rule when using condition_tree.
forward_allNoForward every event unconditionally.
condition_treeNoA condition tree (AND/OR of field comparisons) to forward only matching events. Mutually exclusive with forward_all.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states the side effect of creating both a destination and a routing rule in one call, and implies persistence with 'standing forwarding.' It does not disclose potential idempotency, validation, or error behaviors, but the key side effect is clearly communicated, exceeding the baseline.

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 sentences, front-loaded with the core purpose, followed by concise usage guidance. No redundant or filler content. Every sentence contributes meaning, and the structure is easy to scan.

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?

Given the tool's complexity (6 parameters, nested condition_tree, multiple resources created) and lack of output schema, the description covers the core semantics and the most important usage scenarios. It does not explain return values or prerequisites (e.g., bucket must exist), which would be helpful, but the essential context for invoking the tool is present.

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 input schema already covers all 6 parameters with descriptions (100% coverage). The description adds value by explaining the relationship between forward_all and condition_tree as mutually exclusive alternatives, and by referencing the condition_tree grammar as the same as the routing engine. This goes beyond the schema's static parameter descriptions.

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 states the action: 'Set up standing forwarding from a bucket to a URL.' This is a specific verb with a clear resource and destination. It distinguishes from sibling tools because none other mention forwarding, and it adds detail that it creates the destination and routing rule in one call.

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 provides clear guidance on parameter choice: use forward_all:true for all events, or condition_tree for matching events. It also references the routing engine's AND/OR grammar, which gives context. No explicit sibling alternatives are named, but the tool's unique purpose within the sibling set makes this less critical. It lacks exclusions or when-not-to-use scenarios, so not a 5.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: buckets, events, schemas, deliveries, forwarding, verification, replay, and waiting. Even similar pairs like latest_event vs list_events are clearly differentiated by purpose, with no overlapping responsibilities.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern with underscores, such as create_bucket, list_events, and delete_bucket. The only slight deviation is 'latest_event', which uses an adjective instead of a verb, but it remains intuitive and does not disrupt the overall predictability.

Tool Count4/5

At 17 tools, the set is slightly above the typical well-scoped range of 3-15, but the domain covers buckets, events, schemas, deliveries, configuration, and more, so each tool serves a distinct and justified purpose. The count feels appropriate for the platform's breadth rather than excessive.

Completeness3/5

The set covers the primary lifecycle for buckets, events, and schemas, including create, read, list, and delete operations. However, there is no way to update or delete a forwarding rule after creation, and no explicit update operation for bucket metadata, leaving notable gaps in managing configurations.