Skip to main content
Glama

Server Details

AI agent infrastructure for discovery, authorization, execution, identity, and signed receipts.

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
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A3.9/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct phase or concern: discovery, quoting, authorization, execution, connection management, and receipt verification. There is no meaningful overlap between tool responsibilities.

Naming Consistency4/5

Most tool names are single imperative verbs (authorize, connect, discover, execute, quote), which is consistent and predictable. verify_receipt breaks the pattern slightly by using verb_noun, but the intent remains clear.

Tool Count5/5

Six tools is a well-scoped set for a workflow-oriented infrastructure API. Each tool maps to a clear stage in the operation lifecycle without redundancy.

Completeness4/5

The core lifecycle is well covered: discover, quote, authorize, execute, and verify_receipt. Minor gaps exist around canceling authorizations or revoking connections, but these are not critical to the primary execution workflow.

Available Tools

6 tools
authorizeAuthorize prepaid workA
Idempotent
Inspect

Create an idempotent prepaid authorization for a quoted operation. This may reserve private account credits but does not execute provider work.

ParametersJSON Schema
NameRequiredDescriptionDefault
creditsNo
payloadNoOptional canonical InfraPulse payload; direct top-level fields are also accepted.
agent_idNo
quote_idNo
request_idYesStable idempotency key for this mutating operation.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

A4/5.0
Behavior4/5

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

Beyond the idempotentHint annotation, the description discloses that the tool 'may reserve private account credits' and explicitly states it does not execute provider work. This adds meaningful side-effect and non-execution context beyond the structured annotations.

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 tight sentences with no filler. The core action and idempotency are front-loaded, and the critical clarification that provider work is not executed appears early.

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 description is adequate for selecting the tool and understanding its side effects, and an output schema exists to define returns. However, given the low parameter coverage and the need to invoke correctly, the description leaves gaps around how credits, quote_id, agent_id, and payload relate to the authorization.

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 only 40% and the description does not explain the key parameters such as credits, quote_id, agent_id, or payload. The phrases 'prepaid' and 'quoted operation' hint at credits and quote_id, but the description does not compensate adequately for the low schema coverage on a 5-parameter tool.

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?

States a specific verb and resource ('Create an idempotent prepaid authorization') and clearly scopes the operation as being for a quoted operation. It also distinguishes itself from the execute sibling by explicitly noting that it 'does not execute provider work.'

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?

Provides clear context: this is for a quoted operation and reserves credits rather than executing work, which implies use after quote and before execute. It does not explicitly name alternatives or give when-not-to-use conditions, but the contrast with execution is strong enough for selection.

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

connectConnect InfraPulse accountA
Idempotent
Inspect

Create, inspect, or explicitly approve a private OAuth-bound InfraPulse connection. OAuth proves owner identity; requested InfraPulse operational scopes remain server-side and privileged scopes stay pending until the authenticated owner approves them.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionNoFollow-up action for an existing connection. Defaults to status.
scopesNoInfraPulse operational scopes requested for a new connection. These are approved and stored by InfraPulse, never copied into the OAuth token.
agent_idNoRequired only when the OAuth identity owns multiple linked InfraPulse agents.
request_idNoStable idempotency key for a new connection request.
connection_idNoServer-generated connection id for status or approval follow-up.
approved_scopesNoOptional subset to approve when action=approve.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

A4.1/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond annotations: scopes remain server-side, are not copied into the OAuth token, and privileged scopes stay pending until the authenticated owner approves them. It does not detail side effects of suspend/resume/refresh_funding, but annotations already cover idempotency and non-destructiveness.

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 tight sentences with no filler. The core action is front-loaded, and the OAuth/scoping sentence earns its place by explaining the security model behind the tool.

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 core purpose and the key OAuth/scope semantics, while parameters and output schema are well documented elsewhere. It omits follow-up actions like suspend/resume/refresh_funding, but those are already enumerated in the schema.

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?

Schema coverage is 100%, so the baseline is 3. The description adds a useful conceptual model for scopes and approval that enriches request_id, scopes, connection_id, and approved_scopes, though it does not provide per-parameter detail beyond the schema.

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 states specific verbs (create, inspect, approve) and a clear resource (private OAuth-bound InfraPulse connection). It is not a full 5 because it does not explicitly differentiate itself from sibling tools like authorize or execute.

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 clear context: use this tool for OAuth-bound connection lifecycle operations and approving pending scopes. It does not provide when-not-to-use guidance or name alternatives, so it stops short of a 5.

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

discoverDiscover InfraPulseA
Read-onlyIdempotent
Inspect

Discover InfraPulse production capabilities and the universal execution contract without changing account state.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior; the description reinforces this with 'without changing account state.' It adds minimal behavioral context beyond the annotations, mainly scoping the discovery to production capabilities and the execution contract.

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 a single, front-loaded sentence with no filler. It states the primary purpose and the key safety property efficiently.

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

Completeness5/5

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

Given the zero-parameter schema, rich safety annotations, and presence of an output schema, the description is complete for an agent to safely invoke this discovery tool. No critical contextual information is missing.

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 full coverage, so there are no parameter semantics for the description to clarify. Per the zero-parameter baseline, this is acceptable and requires no additional explanation.

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 states the tool's job: discover InfraPulse production capabilities and the universal execution contract. It uses a specific verb and resource, but it does not explicitly differentiate itself from sibling tools such as connect or execute.

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 phrase 'without changing account state' provides clear context that this is a safe, read-only discovery tool, appropriate for orientation before state-changing operations. However, it does not explicitly state when not to use it or name alternatives among the sibling tools.

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

executeExecute authorized workB
DestructiveIdempotent
Inspect

Execute authorized provider work through InfraPulse. Requires a stable request_id and canonical authorization_id; may consume prepaid credits and change an external provider system.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskNo
inputNo
payloadNoOptional canonical InfraPulse payload; direct top-level fields are also accepted.
agent_idNo
metadataNo
request_idYesStable idempotency key for this mutating operation.
provider_idNo
provider_intentNo
timeout_secondsNo
authorization_idYesCanonical authorization returned by the authorize step.

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

B3.4/5.0
Behavior4/5

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

Annotations already indicate destructive and non-read-only behavior, and the description adds meaningful context: consuming prepaid credits and changing an external provider system. This goes beyond the structured annotation data and gives the agent a clearer risk picture.

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 a single front-loaded sentence that states the core action, prerequisites, and side effects with no filler. Every clause adds useful information.

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?

Despite an output schema existing, the description is thin for a tool with 10 parameters, low schema coverage, open-world semantics, and a destructive external effect. It omits guidance on how to structure task/input versus payload, what provider_intent means, or how the idempotency and credit-consumption behavior interact.

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 30%, and the description does little to compensate for the seven undocumented parameters. It reinforces that request_id should be stable and authorization_id canonical, but other fields like task, input, payload, provider_intent, and timeout_seconds receive no additional guidance.

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 names a specific verb and resource: 'Execute authorized provider work through InfraPulse.' This distinguishes execution from sibling tools like authorize, discover, or quote, though it does not explicitly name any sibling to contrast against.

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 the right context by requiring a stable request_id and canonical authorization_id, suggesting use after an authorization step. However, it does not explicitly state when not to use this tool or point to an alternative, leaving some inference to the agent.

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

quoteQuote InfraPulse workA
Read-onlyIdempotent
Inspect

Get a deterministic price quote before authorization or execution. This does not reserve credits or run provider work.

ParametersJSON Schema
NameRequiredDescriptionDefault
payloadNo
agent_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

A3.9/5.0
Behavior5/5

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

Even with readOnlyHint and idempotentHint annotations, the description adds meaningful behavioral context: it explicitly states there are no side effects such as reserving credits or running provider work. This reinforces that the tool is safe to call before committing to anything.

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 front-load the purpose and the most important behavioral constraints. There is no filler, redundancy, or vague language.

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?

The description covers the tool's purpose and side-effect behavior, and an output schema exists so return values need not be explained. However, the input contract is essentially undocumented: payload is a bare object with additionalProperties true, and the description offers no clues about required fields or how agent_id is used.

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

Parameters1/5

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

The schema has 0% description coverage, and the description provides no guidance about what payload or agent_id should contain. An agent cannot infer how to construct a valid request from either the schema or the prose.

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 verb and resource: 'Get a deterministic price quote.' It also positions the tool as a pre-authorization/pre-execution step, which clearly distinguishes it from the sibling tools authorize and execute.

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 clear timing context: use this before authorization or execution. It also gives an important exclusion by saying the tool 'does not reserve credits or run provider work.' It does not explicitly name alternative tools, but the usage window is clear enough.

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

verify_receiptVerify InfraPulse receiptA
Read-onlyIdempotent
Inspect

Verify an InfraPulse signed receipt by receipt_id or receipt object without changing account or provider state.

ParametersJSON Schema
NameRequiredDescriptionDefault
payloadNo
receiptNo
receipt_idNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
okNo
dataNo
errorNo
intentNo
statusNo
receiptNo
successNo
request_idNo
next_actionNo
operation_idNo
requires_humanNo

TDQS

A4/5.0
Behavior3/5

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

The annotations already provide readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is well covered. The description adds only modest behavioral context beyond annotations, such as the signed nature of the receipt and the explicit no-state-change guarantee, but does not disclose additional traits like exact response semantics (covered by output schema) or failure modes.

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?

A single, focused sentence that front-loads the primary action and key mode of identification, then appends the behavioral guarantee. There is no filler, repetition, or unnecessary detail, making it highly scannable for an agent.

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 presence of a rich output schema and safety annotations, the description covers the core usage scenario well. The main gap is the undocumented 'payload' parameter, which leaves the agent uncertain whether payload is a valid alternative identity and whether it behaves differently from receipt_id or receipt. Overall, it is nearly complete but not fully self-sufficient.

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 0%, so the description carries the burden of explaining parameters. It explicitly names receipt_id and receipt object, which covers two of the three accepted inputs, but it omits 'payload' entirely and gives no detail on the inner structure of the object parameters. Thus it partially compensates for the schema gap but is incomplete.

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 a specific verb ('Verify'), a specific resource ('an InfraPulse signed receipt'), and the two accepted ways to identify it ('by receipt_id or receipt object'). It also adds a key differentiator, 'without changing account or provider state', which aligns with the read-only nature and distinguishes it from the sibling tools like execute and quote.

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 clear context for when to use the tool: when verifying a signed receipt by ID or object, without side effects. It does not explicitly name alternatives or exclusion conditions, but the sibling tools (authorize, connect, discover, execute, quote) are sufficiently different that the usage context is unambiguous.

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. 6 tool updates
    • First observedauthorize
    • First observedconnect
    • First observeddiscover
    • First observedexecute
    • First observedquote
    • First observedverify_receipt

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources