InfraPulse
Server Details
AI agent infrastructure for discovery, authorization, execution, identity, and signed receipts.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 6 tools
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.
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.
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.
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 toolsauthorizeAuthorize prepaid workAIdempotentInspect
Create an idempotent prepaid authorization for a quoted operation. This may reserve private account credits but does not execute provider work.
| Name | Required | Description | Default |
|---|---|---|---|
| credits | No | ||
| payload | No | Optional canonical InfraPulse payload; direct top-level fields are also accepted. | |
| agent_id | No | ||
| quote_id | No | ||
| request_id | Yes | Stable idempotency key for this mutating operation. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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 accountAIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Follow-up action for an existing connection. Defaults to status. | |
| scopes | No | InfraPulse operational scopes requested for a new connection. These are approved and stored by InfraPulse, never copied into the OAuth token. | |
| agent_id | No | Required only when the OAuth identity owns multiple linked InfraPulse agents. | |
| request_id | No | Stable idempotency key for a new connection request. | |
| connection_id | No | Server-generated connection id for status or approval follow-up. | |
| approved_scopes | No | Optional subset to approve when action=approve. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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 InfraPulseARead-onlyIdempotentInspect
Discover InfraPulse production capabilities and the universal execution contract without changing account state.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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 workBDestructiveIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| task | No | ||
| input | No | ||
| payload | No | Optional canonical InfraPulse payload; direct top-level fields are also accepted. | |
| agent_id | No | ||
| metadata | No | ||
| request_id | Yes | Stable idempotency key for this mutating operation. | |
| provider_id | No | ||
| provider_intent | No | ||
| timeout_seconds | No | ||
| authorization_id | Yes | Canonical authorization returned by the authorize step. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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 workARead-onlyIdempotentInspect
Get a deterministic price quote before authorization or execution. This does not reserve credits or run provider work.
| Name | Required | Description | Default |
|---|---|---|---|
| payload | No | ||
| agent_id | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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 receiptARead-onlyIdempotentInspect
Verify an InfraPulse signed receipt by receipt_id or receipt object without changing account or provider state.
| Name | Required | Description | Default |
|---|---|---|---|
| payload | No | ||
| receipt | No | ||
| receipt_id | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | No | |
| data | No | |
| error | No | |
| intent | No | |
| status | No | |
| receipt | No | |
| success | No | |
| request_id | No | |
| next_action | No | |
| operation_id | No | |
| requires_human | No |
TDQS
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.
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.
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.
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.
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.
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.
6 tool updates
- First observed
authorize - First observed
connect - First observed
discover - First observed
execute - First observed
quote - First observed
verify_receipt
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
Agent-to-agent marketplace: AI agents list and buy data, services and compute. Signed receipts.
Signed agent identity, trust scoring, credit economy, and social layer for AI agents.
Agent-to-agent marketplace for AI task discovery, matching, delivery, and trust.
Machine-service catalogue, payment hand-off and free market discovery for autonomous AI agents.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables AI agents to create cryptographically verifiable receipts of their delegated work, with capabilities for multi-party approval and offline verification.11162Apache 2.0

evermint-mcpofficial
AlicenseNot gradedqualityDmaintenanceTamper-evident receipts for AI agent actions. The notary layer for agent-to-agent transactions.501MIT- MIT
- AlicenseNot gradedqualityDmaintenanceProvides cryptographic governance receipts for AI agents, enabling pre-execution evaluation and signed verdicts (EXECUTE/BLOCK/REVIEW/SHADOW) with offline-verifiable audit trails.MIT