Skip to main content
Glama

Server Details

Name the job, not the vendor. Routes a provider, fails over, catalog off the tool list.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

7 tools
thruact_actBInspect

Run a capability. Routes across providers and fails over automatically on provider faults. The reply's route says which providers were considered, what each scored, and why any were not used — including ones dropped for a missing credential.

ParametersJSON Schema
NameRequiredDescriptionDefault
hedgeNoRace a backup provider if the first is slower than usual. Cuts tail latency; you are charged for one answer.
inputNo
preferNoWhat to optimise for among the providers that fit the ceiling.
capabilityYes
max_cost_usdNoCeiling for this call. Narrows which providers may be used rather than refusing outright; if nothing fits, the error names the cheapest price that would.

TDQS

B3.4/5.0
Behavior4/5

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

No annotations exist, so the description carries the full burden. It discloses routing, failover behavior, and the route field's content (scoring, rejection reasons, missing credentials). It lacks detail on side effects, cost guarantees beyond max_cost_usd, or response structure, but the disclosed behavior is substantive.

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?

Three sentences deliver purpose, routing/failover behavior, and route semantics with zero filler. Key behavioral details are front-loaded.

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

Completeness2/5

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

With no output schema and no annotations, the description explains the route field but omits the input/capability format, hedge semantics, and what output besides route is returned. An agent cannot reliably construct a valid call without additional inference.

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

Parameters2/5

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

Schema coverage is 60% (only prefer and max_cost_usd have descriptions). The description adds no parameter-level details for capability, input, or hedge. The core capability argument is undefined, and input is an undocumented nested object, requiring the agent to guess their structure.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

'Run a capability' is a specific verb+resource and the routing/failover behavior distinguishes it from siblings, though it does not explicitly name alternatives or clarify how it differs from thruact_call.

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

Usage Guidelines3/5

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

The description implies use when a capability needs execution with failover, but provides no explicit when-to-use vs alternatives or exclusions. It does not mention related tools like thruact_compare or thruact_proxy.

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

thruact_callCInspect

Run one specific tool by id. No failover.

ParametersJSON Schema
NameRequiredDescriptionDefault
toolYes
paramsNo

TDQS

C2.7/5.0
Behavior2/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 discloses only one behavioral trait: 'No failover.' It does not mention possible side effects, whether the tool can invoke arbitrary actions, how invalid tool ids are handled, or whether this is a read-only operation or can mutate state.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short and front-loaded: 'Run one specific tool by id. No failover.' Both clauses carry meaning and there is no wasted text. However, the phrasing is so compressed that some clarity is sacrificed, especially around 'tool by id.'

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

Completeness2/5

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

For a generic tool dispatcher with no annotations, no output schema, and a free-form params object, two sentences are insufficient. The agent does not learn what params contains, what the return value is, what happens on unknown ids, or whether running a tool can have side effects. The missing information is essential for safe invocation.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it only clarifies that 'tool' is an id. It does not explain that 'params' is an object passed into the selected tool, what keys it should contain, or how it interacts with the tool. The description adds minimal meaning beyond the parameter names.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a clear verb and resource: 'Run one specific tool by id.' It communicates that this tool executes one named tool rather than performing some broader orchestration. It doesn't explicitly distinguish itself from siblings, but the 'one specific tool by id' framing is distinctive enough for basic selection.

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?

There is no explicit guidance about when to use thruact_call versus any sibling like thruact_act or thruact_proxy. 'No failover' hints at a selection criterion, but the description never names alternatives or explains when failover would be available. An agent would have to infer usage from the name and sibling list.

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

thruact_compareAInspect

Ask every provider behind a capability the same question at once and report where their answers differ. Use it when the answer matters enough to want it corroborated. Costs more than act: every provider called is paid.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputNo
providersNoHow many providers to ask. Omit for all of them.
capabilityYes

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the key non-obvious behavior: every provider called is paid, and it costs more than act. It does not mention auth or rate limits, but for this tool the cost warning is the most important behavioral trait.

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?

Three sentences with no filler: main behavior first, then usage guidance, then cost tradeoff. Every sentence earns its place.

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 three-parameter tool with no output schema and no annotations, the description covers purpose, usage, and cost, but leaves capability and input unexplained. An agent would still need additional context to construct a correct call.

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

Parameters2/5

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

Schema description coverage is only 33% (providers is documented, but capability and input are not). The description does not explain what capability values are valid, what should go into the input object, or how the providers count relates to available providers. It adds no parameter-level meaning beyond 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 clearly states the verb and resource: ask every provider behind a capability the same question and report divergences. It is specific enough to distinguish from siblings by the comparison scope, and it even names act as the cheaper alternative.

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?

It gives an explicit trigger condition: use when the answer matters enough to want corroboration. It also names act as the cheaper alternative, implying when not to use this tool.

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

thruact_discoverAInspect

Find capabilities for a job, with prices and measured reliability. Search first, execute second.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax candidates
queryYesNatural language job

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description must carry behavioral weight. It reveals that results include prices and measured reliability and implies a non-mutating search operation. However, it does not describe output structure, edge cases, or whether any side effects exist beyond the 'search' framing.

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?

Two short sentences with no filler. The core purpose and result attributes are front-loaded, and the workflow hint 'Search first, execute second' earns its place by guiding correct usage.

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 simple two-parameter search tool with no output schema, the description plus schema is largely adequate to invoke correctly. It could be more complete by describing the result format or clarifying what 'measured reliability' means, but the essentials are present.

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 description coverage is 100%, so the baseline is 3. The description maps the job concept to the query parameter but adds no extra syntax, format, or boundary information beyond what the schema already provides for query and limit.

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 states a specific action ('Find capabilities for a job'), names the resource ('capabilities'), and adds distinctive result attributes ('prices and measured reliability'). The phrase 'Search first, execute second' also separates this discovery tool from execution siblings like thruact_act and thruact_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 gives a clear workflow signal: search first, execute second. This tells an agent to use this tool before acting, which distinguishes it from execution-focused siblings. It does not explicitly name alternatives or list when-not-to-use conditions, but the context is clear.

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

thruact_iqCInspect

Measured reliability per tool over the last 7 days.

ParametersJSON Schema
NameRequiredDescriptionDefault
capabilityNo

TDQS

C2.7/5.0
Behavior2/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 states the time window and aggregation level, but does not state whether this is a read-only analysis, whether it queries live or cached data, what reliability means, or what the response contains. For an unannotated tool this is a notable gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no filler: it names the metric, the grouping, and the time window. It is appropriately compact, though its brevity leaves surrounding context to be supplied elsewhere.

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

Completeness2/5

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

For a one-parameter tool with no output schema and no annotations, the description leaves important context unstated: what values capability should take, how the result is presented, and how this tool relates to its siblings. An agent could guess, but the definition does not give enough to call it with confidence.

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

Parameters2/5

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

The only parameter 'capability' has no schema description, no enum, and 0% documentation coverage; the description's 'per tool' phrasing hints that capability names a tool but gives no format, accepted values, or example. The description only partially compensates for the missing schema semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource (tool reliability) and the scope (last 7 days, per tool), which distinguishes it in subject matter from siblings like thruact_act or thruact_call. However, it lacks an explicit present-tense verb such as 'returns' or 'lists,' and it does not explicitly differentiate itself from sibling tools, so it falls short of a 5.

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?

There is no guidance about when to choose thruact_iq over thruact_compare or thruact_discover, and no mention of alternatives, prerequisites, or exclusions. The agent is left to infer usage entirely from the tool name and the one-line description.

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

thruact_proxyAInspect

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.

ParametersJSON 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.

thruact_walletCInspect

Prepaid balance and recent charges.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. 'Prepaid balance and recent charges' hints at a read-only info operation, but it does not explicitly state that calling it has no side effects, nor does it describe return format, freshness, or any other behavioral details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely brief and contains no filler or redundant detail. It is slightly under-specified as a sentence fragment, but for a simple zero-parameter tool it is compact and reasonably front-loaded.

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?

The tool is simple (zero parameters, no output schema, no annotations), and the description names the two relevant data concepts: prepaid balance and recent charges. However, it does not explicitly state that these are returned values, and it provides no detail about the charges or how the data is presented, leaving the agent partially in the dark.

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 has zero parameters and the description needs to compensate for nothing. The phrase 'prepaid balance and recent charges' gives the agent a general sense of what the no-argument call will return, which is appropriate for a parameterless wallet query.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description identifies the resource (wallet) and the data it exposes (prepaid balance and recent charges), but it lacks an explicit verb such as 'get', 'list', or 'retrieve'. It is more of a label than a statement of what the tool does, and it does not actively distinguish itself from the sibling tools.

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 implies the tool is for viewing wallet balance and charges but provides no explicit guidance on when to use it versus alternatives like thruact_act, thruact_call, or thruact_compare. There are no exclusions, prerequisites, or context for choosing this tool over its siblings.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updates
    • First observedthruact_act
    • First observedthruact_call
    • First observedthruact_compare
    • First observedthruact_discover
    • First observedthruact_iq
    • First observedthruact_proxy
    • First observedthruact_wallet

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    A
    maintenance
    Intelligently routes AI tool calls (search, extract, browse) to the cheapest capable provider by default with automatic failover and audit receipts, enabling cost-effective agent workflows.
    2
    -
  • F
    license
    Not graded
    quality
    C
    maintenance
    Aggregates and routes to hundreds of downstream MCP servers behind a single interface, exposing only five meta-tools and dynamically retrieving the relevant tool for an agent on demand.
    -
  • A
    license
    A
    quality
    C
    maintenance
    Enables routing tasks to the right specialist agents, assembling the needed context from a layered catalog of agents, skills, knowledge, runbooks, topics, tools, and connectors, while remembering how a business wants work done.
    10
    MIT
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