zFinia Intelligence
Server Details
Machine-economy newswire and paid changes-since for agents. MCP is challenge-handoff, not a wallet.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool addresses a completely separate concern: color contrast, data contract validation, delta tracking for machine economy changes, and product evidence extraction. There is zero functional overlap, and the descriptions are precise about boundaries, making misselection nearly impossible.
All tool names follow a consistent snake_case format with descriptive noun phrases (e.g., 'accessibility_contrast_calculator', 'public_catalog_offer_evidence'). While not verb-first, the pattern is uniform and predictable, with the only slight deviation being 'machine_economy_changes_since' which uses a time qualifier, but it remains stylistically aligned.
At 4 tools, the server is on the lean side, but each tool serves a distinct, specialized purpose that fits an 'Intelligence' server offering niche utilities. The count is not excessive and each tool appears justified, though the server could plausibly expand to 5-7 tools without feeling bloated.
The tools cover four disparate functional areas without a unifying workflow or obvious lifecycle coverage. While each is self-contained, the lack of a cohesive domain makes it hard to identify missing operations; for example, there's no tool for batch processing or for comparing multiple contrast pairs, and the machine economy tool only provides deltas without a base query. The surface feels like a grab bag rather than a complete suite for a single purpose.
Available Tools
4 toolsaccessibility_contrast_calculatorAccessibility Contrast CalculatorBInspect
Calculate WCAG 2.x sRGB contrast for one caller-supplied colour pair; no interface-wide accessibility claim is made.
| Name | Required | Description | Default |
|---|---|---|---|
| background | Yes | ||
| foreground | Yes | ||
| large_text | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| wcag_aa | Yes | |
| wcag_aaa | Yes | |
| large_text | Yes | |
| limitations | Yes | |
| contrast_ratio | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool computes WCAG 2.x sRGB contrast and explicitly states it makes no interface-wide claim, which is a scope disclaimer. However, it does not describe error behavior, handling of invalid inputs (though schema enforces pattern), or what the output represents (e.g., ratio vs pass/fail). The addition of the WCAG standard and scope disclaimer adds some value beyond the name, but significant behavioral details remain undisclosed.
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 sentence that front-loads the verb and resource, then adds the scope disclaimer. Every word earns its place—there is no fluff, and the key differentiator (single pair vs interface-wide) is included. It is optimally concise.
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?
Although an output schema exists (so return format is covered), the description fails to explain the purpose of the large_text parameter or clarify what the computed contrast value represents. An agent might infer a ratio, but the boolean's role is ambiguous. For a tool with only three parameters, this omission is a meaningful gap.
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. It does not mention any parameters by name or explain their meaning. While foreground and background are self-explanatory hex colors, the boolean large_text is left unexplained; it likely affects WCAG thresholds, but the description says nothing about it. The description adds no value beyond what the schema pattern already provides for colors.
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 specific action (calculate WCAG 2.x sRGB contrast) and the resource (a caller-supplied color pair). It also distinguishes itself from interface-wide accessibility claims, which separates it from potential broader audit tools. The verb and resource are explicit and unambiguous.
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 on when to use this tool versus alternatives. The description implies it is for a single pair, but does not state when not to use it or point to a sibling for broader checks. Since siblings are unrelated, it's not a critical gap, but the lack of any contextual 'when to use' instruction lowers the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
data_compatibility_checkerData Compatibility CheckerAInspect
Deterministically gate caller-supplied field contracts before ingestion, migration, CI deployment, or machine-to-machine handoff; returns stable incompatibility codes and remediation actions without fetching data or validating API behavior.
| Name | Required | Description | Default |
|---|---|---|---|
| source_fields | Yes | ||
| target_fields | Yes | ||
| comparison_mode | No | ||
| canonicalization | No | ||
| contract_version | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| issues | Yes | |
| compatible | Yes | |
| assumptions | Yes | |
| issue_count | Yes | |
| limitations | Yes | |
| remediations | Yes | |
| comparison_mode | Yes | |
| canonicalization | Yes | |
| contract_version | Yes | |
| checked_source_fields | Yes | |
| checked_target_fields | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses deterministic behavior, stable outputs, and the fact that it performs no data fetching or API validation. It does not mention whether it modifies anything, but the term 'gate' implies a read-only check. This covers key behavioral traits sufficiently.
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 sentence that is front-loaded with the primary purpose and efficiently conveys the essential scope. It avoids unnecessary words and is well-structured for quick comprehension.
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 has a moderately complex schema with nested objects and enums, but the description omits details about the comparison modes, canonicalization options, contract version, and the output format (only broadly mentions 'incompatibility codes and remediation actions'). This leaves significant gaps for an agent to understand how to properly invoke the tool.
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 description does not explain any of the five parameters. It mentions 'field contracts' generically but does not define source_fields, target_fields, comparison_mode, canonicalization, or contract_version. Since the schema also lacks descriptions, the parameter meanings are entirely unexplained, providing no added value.
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 purpose with a specific verb ('gate') and specifies the context (ingestion, migration, CI deployment, machine-to-machine handoff). It also distinguishes itself by noting it does not fetch data or validate API behavior, making it distinct from 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 provides usage context by listing the scenarios (before ingestion, migration, CI deployment, machine-to-machine handoff) and explicitly states what it does not do (fetch data, validate API behavior), which helps an agent decide when to use this tool. However, it does not explicitly compare with alternatives or provide conditions for choosing this over the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
machine_economy_changes_sinceMachine Economy Changes SinceAInspect
When your agent already checked zFinia and needs only material machine-economy changes since its last cursor, use this tool. Returns delta items and nextCursor for the next poll; empty items is valid. Pay 10000 atomic USDC on Base via exact x402. MCP does not pay.
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Alias of cursor. Use the previous nextCursor so only later material changes are returned. | |
| cursor | No | Previous nextCursor (opaque or ISO-8601). Required for the paid delta unless since is set. Pass this back on the next poll. | |
| maxItems | No | ||
| include_high_resolution | No | When true, paid items include full evidence fields already present on the public newswire item. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| items | Yes | |
| since | Yes | |
| schema | Yes | |
| product | No | |
| truncated | Yes | |
| nextCursor | Yes | |
| generatedAt | Yes | |
| priceAtomic | No | |
| usageRights | Yes | |
| schemaVersion | No | |
| highResolution | No | |
| marketMovements | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that this is a paid operation ('Pay 10000 atomic USDC on Base via exact x402') and explains the effect of include_high_resolution. It does not explicitly state whether the operation is read-only or has side effects, but the delta/polling nature implies a read-style operation.
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 well-structured, consisting of three sentences that cover the trigger, the return behavior, and the payment requirement. It avoids redundancy and front-loads the key usage condition.
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 tool has four parameters and a payment requirement, the description provides sufficient context for an agent to know when to call it, what to pass, and what to expect (delta items, nextCursor, possible empty items). The output schema is present, so no further detail is needed.
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 descriptions for since, cursor, and include_high_resolution add meaning beyond the raw type definitions, and the tool-level description clarifies that cursor or since must be supplied. maxItems lacks a description, but its min/max constraints are present in the schema, so the gap is minor.
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 that this tool returns material machine-economy changes since a cursor, and positions it as the delta mechanism for a caller that already has a zFinia cursor. It clearly distinguishes it from siblings like public_catalog_offer_evidence by focusing on 'changes since its last cursor'.
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 explicitly instructs to supply either cursor or since, and tells the caller to pass the nextCursor back on the next poll. It also notes that empty items is a valid result, giving concrete guidance on how to interpret the response.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
public_catalog_offer_evidenceCatalog Offer Evidence ExtractorAInspect
Convert caller-supplied authorized public product-page HTML containing schema.org Product JSON-LD into normalized Product/Offer evidence with SHA-256 provenance; no URL fetching, browser execution, or price-currentness claim.
| Name | Required | Description | Default |
|---|---|---|---|
| html | Yes | ||
| source_url | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| source | Yes | |
| product | Yes | |
| version | Yes | |
| evidence | Yes | |
| capability_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the tool does not fetch URLs, execute a browser, or assert price-currentness, and it indicates the output includes SHA-256 provenance. This is transparent about what the tool does and does not do, though side effects or error behavior are not mentioned.
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, dense sentence without redundant words. It efficiently packs key information about input, output, and non-goals. While slightly long, every phrase adds value, making it well-structured for an API description.
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 tool's complexity, the description covers the essential points: input requirements, output nature (normalized evidence with SHA-256 provenance), and limitations. It does not detail error handling or exact output schema, but the core functionality is sufficiently complete for an agent to use the tool correctly.
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 provides only types and formats for source_url and html, with no descriptions. The description adds meaning by indicating html is product-page HTML and mentioning authorization, but it does not explicitly define each parameter's role (e.g., source_url as the origin for provenance). It partially compensates for missing schema descriptions.
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 function: converting caller-supplied HTML with schema.org Product JSON-LD into normalized Product/Offer evidence with SHA-256 provenance. It distinguishes itself from siblings by specifying the input type and output format, making its purpose unambiguous.
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 provides usage context by specifying that HTML must be caller-supplied, authorized, and public, and it explicitly states non-goals (no URL fetching, no browser execution, no price-currentness claim). This helps an agent decide when to use this tool, though it could be more explicit about alternatives.
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.
4 tool updates
- First observed
accessibility_contrast_calculator - First observed
data_compatibility_checker - First observed
machine_economy_changes_since - First observed
public_catalog_offer_evidence
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
- llm-busOAuthcom.llm-bus
Coordinate multiple AI agents over MCP: atomic claims, leases, shared ledger, handoffs, tasks.
Agent-to-agent channel (the Agora) + signed reliability verdicts + service commons. MCP + A2A.
Free MCP window into a live autonomous machine-economy experiment: telemetry, hypothesis scoreboard.
Agent-first task marketplace MCP — discover, claim, and deliver paid workspace tasks.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server for wallet-addressed encrypted data storage and retrieval, enabling agents to receive paid messages and maintain checkpoints with E2E encryption.3361MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for AgentPay — the payment gateway for autonomous AI agents. Fund a wallet once, give your agent the key, and it discovers, provisions, and pays for tool APIs on its own. One key, every tool.1121MIT
- AlicenseNot gradedqualityAmaintenanceProvides evidence-oriented MCP service for cryptographically identified agents, bounded public contracts, privacy-preserving records, and append-only audit.Apache 2.0
- AlicenseNot gradedqualityAmaintenanceMCP server for permissioned, structured agent-to-agent communications, enabling agents to coordinate and negotiate through scoped, typed messages with authentication and audit logging.MIT