Skip to main content
Glama

thruact_proxy

Send an authenticated request to a third-party vendor the workspace has connected. The stored API key is injected server-side — you never see it. Give the vendor id from the directory (e.g. openai, sendgrid), an HTTP method, and a path on that vendor's own API. Use it to act through a connected vendor that is not a Thruact capability. Metered per call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON request body for POST/PUT/PATCH
pathYesPath on the vendor's API, e.g. /v1/models
methodNo
vendorYesVendor id from the directory

TDQS

A4.2/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 behavioral burden. It discloses that requests are authenticated, the API key is injected server-side and never exposed, and that calls are metered. It does not discuss response shape or side effects, but the key-handling and cost transparency are meaningful and go beyond the schema.

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 compact and front-loaded: purpose first, then security, then required inputs, then usage scope, then cost. Every sentence earns its place, and there is no redundant wording.

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 covers the essential operational context: what the tool does, how authentication is handled, what inputs to give, when to use it, and that it is metered. Since there is no output schema, return behavior is not documented, but for a generic pass-through proxy the vendor-specific response is hard to generalize. A brief note about returning the vendor's response would improve completeness.

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 75%, so the schema already documents most parameters. The description adds useful examples for vendor ('openai, sendgrid') and clarifies that path is on the vendor's own API, but it does not explain the default behavior when the optional method is omitted. Overall it reinforces rather than substantially extends the schema.

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 a specific verb and resource: 'Send an authenticated request to a third-party vendor the workspace has connected.' It clearly differentiates from siblings by stating it is for vendors that are 'not a Thruact capability,' so an agent understands what this tool uniquely does.

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 gives a clear use condition: use it when acting through a connected vendor that is not a Thruact capability. It also adds a cost signal, 'Metered per call.' It does not explicitly name which sibling tools to use for Thruact capabilities, so it stops short of full alternative routing.

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

Each tool maps to a distinct task: capability-level execution, tool-id execution, multi-provider comparison, discovery, reliability stats, vendor API proxying, and billing. The potential overlaps (act vs call vs compare) are clearly separated by failover, fixed-tool vs multi-provider behavior.

Naming Consistency4/5

All names share a clean thruact_ prefix and lowercase single-word convention, which is easy to predict. The suffix is not strictly verb_noun because iq, proxy, and walet are noun-ish while act, call, compare, and discover are verbs, so there is a minor stylistic inconsistency.

Tool Count5/5

Seven tools is well within the ideal range and each one has a clear purpose with no redundant duplication. The count matches a gateway-style product that needs discovery, execution modes, comparison, reliability, proxying, and wallet visibility.

Completeness4/5

The set covers the main user-facing workflow: discover capabilities, execute them, compare answers, inspect reliability, proxy to external vendors, and track spending. The only noticeable gap is that there is no explicit directory/list tool for connected vendor ids or all available tool ids, though discover and external workspace setup can partially work around that.

Resources