Thruact
Server Details
Name the job, not the vendor. Routes a provider, fails over, catalog off the tool list.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
7 toolsthruact_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.
| Name | Required | Description | Default |
|---|---|---|---|
| hedge | No | Race a backup provider if the first is slower than usual. Cuts tail latency; you are charged for one answer. | |
| input | No | ||
| prefer | No | What to optimise for among the providers that fit the ceiling. | |
| capability | Yes | ||
| max_cost_usd | No | Ceiling 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
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| tool | Yes | ||
| params | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | ||
| providers | No | How many providers to ask. Omit for all of them. | |
| capability | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max candidates | |
| query | Yes | Natural language job |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| capability | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body for POST/PUT/PATCH | |
| path | Yes | Path on the vendor's API, e.g. /v1/models | |
| method | No | ||
| vendor | Yes | Vendor id from the directory |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
7 tool updates
- First observed
thruact_act - First observed
thruact_call - First observed
thruact_compare - First observed
thruact_discover - First observed
thruact_iq - First observed
thruact_proxy - First observed
thruact_wallet
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Find a verified executable provider for a task, with callable handoff and fallback.
OpenRouter for tools and data. Compare catalog providers and call them from one hosted MCP endpoint.
327 tools, 92 providers. Pay per call via x402 + MPP. One MCP endpoint.
Property maintenance triage and vendor packet generator.
Related MCP Servers
- FlicenseNot gradedqualityAmaintenanceIntelligently 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-
- FlicenseNot gradedqualityCmaintenanceAggregates 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.-
- AlicenseCqualityDmaintenanceIntelligent routing layer that analyzes tasks and guides your AI agent to delegate work to specialized tools (Gemini, Aider, Copilot) using rule-based and capability-based routing.3MIT
- AlicenseAqualityCmaintenanceEnables 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.10MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.