AgentDataHub Gateway
Server Details
Pay-per-call data & AI gateway: 153 x402 endpoints + AI chat/image/deep. USDC on Base.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 4 of 4 tools scored.
Each tool serves a distinct purpose: ai_gateway handles AI tasks, fetch_data retrieves data products, get_product_info provides details for one product, and list_products enumerates all products. There is no overlap between the AI endpoint and data product fetch, and the informational tools are clearly separated by granularity.
Three of four tools follow a clear verb_noun pattern (fetch_data, get_product_info, list_products), while ai_gateway is a noun phrase. This is a minor deviation that doesn't hinder readability, but breaks strict consistency.
With only 4 tools, the server is tightly scoped to its purpose as a gateway for AI and data products. Each tool is necessary and there is no bloat or redundancy.
The tool set covers the core consumer workflow: discover products (list_products), inspect details (get_product_info), fetch data (fetch_data), and use AI (ai_gateway). Minor gaps like a dedicated balance check or error handling tool are not critical for the gateway's stated purpose.
Available Tools
4 toolsai_gatewayAInspect
AI Gateway (Grand Opening 8折): one endpoint auto-tiers your request - chat ($0.001) / image generation ($0.04) / deep reasoning ($0.04). Pass prompt; wallet optional for free trial. Auto-switches by task type.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | what you want: ask, analyze deeply, or generate an image | |
| wallet | No | optional 0x wallet for X-Wallet free trial (first 3 calls free) |
Tool Definition Quality
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 useful behavioral details like pricing per tier ($0.001 chat, $0.04 image/reasoning), free trial via wallet, and auto-tiering. However, it omits other behavioral traits such as potential privacy concerns, rate limits, or what happens when the prompt is ambiguous, leaving some ambiguity.
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 concise and front-loaded, with the main purpose stated first. It efficiently communicates tiering and usage in a few sentences. However, it includes promotional text ('Grand Opening 8折') that is not operationally useful, and the last sentence 'Auto-switches by task type' is slightly redundant with the first sentence, costing a point.
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 2-parameter tool with no output schema, the description covers purpose, usage, pricing, and the free trial mechanism. It does not explicitly describe return values, but the tier types (chat/image/reasoning) make the output nature clear. Missing details like error handling or authentication are not critical given the tool's simplicity.
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% for the two parameters (prompt, wallet), so the baseline is 3. The description adds meaningful context beyond the schema by explaining that the prompt type determines the tier and price, and that wallet is optional for the free trial. This enriches understanding of how the parameters influence behavior.
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 tool as a unified AI gateway that auto-tiers requests into chat, image generation, and deep reasoning. It states the scope and behavior ('auto-tiers', 'auto-switches by task type'), and the sibling tools (fetch_data, get_product_info, list_products) are unrelated, making this tool's distinct purpose evident.
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 usage instructions ('Pass prompt; wallet optional for free trial') but does not explicitly state when to use this tool versus alternatives. Since sibling tools are unrelated, there is no direct alternative, but the lack of explicit 'when' or 'when-not' guidance leaves the context implied rather than fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_dataAInspect
Fetch a data product. Pass wallet (0x...) to use the free trial / paid access; without payment an x402 402 payment challenge is returned.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| wallet | No | optional 0x wallet for X-Wallet free trial |
Tool Definition Quality
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 a key behavioral trait: without payment, an x402 402 payment challenge is returned, and passing a wallet enables free trial/paid access. This goes beyond the schema and helps the agent anticipate the payment flow. It does not mention side effects, but 'fetch' implies a read 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 a single, focused sentence that front-loads the main purpose and then explains the payment nuance. Every word earns its place with no redundancy.
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, the description should clarify return behavior. It implicitly suggests that with payment the data product is returned, and without payment a 402 challenge is returned, but it does not explicitly describe the success response or mention alternative error cases. It also lacks comparison to sibling tools, making it only moderately complete.
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 covers only the wallet parameter with a description, while id lacks any description (50% coverage). The description adds context for wallet (free trial/paid access) and the consequence of omitting it, but does not explain what 'id' refers to. Since id is critical, the description only partially compensates for the schema gap.
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: 'Fetch a data product.' The verb 'fetch' and resource 'data product' are specific, and the payment context distinguishes it from siblings like list_products and get_product_info, which likely handle listing and metadata.
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 instructions on how to invoke the tool (passing wallet for free trial/paid access, or expect a 402 challenge) but does not explicitly compare to sibling tools or state when to choose this over alternatives. Usage is implied rather than clearly differentiated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_product_infoAInspect
Get details and payment instructions (x402, USDC on Base) for one product by id. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | product id, e.g. econ-fred |
Tool Definition Quality
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 mentions 'Free' and 'payment instructions' but does not disclose error behavior, authentication requirements, rate limits, or the exact structure of the returned data. This is a bare minimum for a read operation without safety hints.
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 clearly states the action and key details. It contains no filler or redundant information, making it appropriately concise for a simple parameterized get-by-id 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 tool is simple with one required parameter and no output schema, so the description's mention of 'details and payment instructions' gives a general sense of the return. However, it does not clarify what 'details' entails, potential failure modes, or that a valid ID might need to come from list_products, leaving some gaps for an agent to handle.
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 already fully describes the 'id' parameter with an example ('econ-fred'). The description adds only that the tool works 'by id', which aligns with the schema but does not provide additional syntax, format, or constraints beyond what the schema already offers. With 100% schema coverage, the baseline of 3 is appropriate.
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 retrieves details and payment instructions for a single product by its ID, using the verb 'Get' and identifying the resource. It distinguishes itself from siblings like list_products by specifying 'one product by id' rather than listing all products.
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 'for one product by id' implies this tool is for fetching a specific product's details, as opposed to listing products. However, it does not explicitly mention when not to use it or point to alternatives like list_products, so the usage guidance remains implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_productsAInspect
List all pay-per-call data products on AgentDatum (id, price USD, description). Free.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses that the tool is free and indicates the returned fields (id, price USD, description), which is useful. However, it does not mention any other behavioral aspects like pagination, response format, or rate limits, though for a simple list tool this may be acceptable.
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, efficient sentence that clearly states the function, scope, output fields, and cost. Every part contributes value, and the key information is 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?
For a simple, zero-parameter listing tool with no output schema and no annotations, the description provides sufficient context: what is listed, where it is from, the fields returned, and that it is free. It could mention response format or pagination, but those are not essential for a basic list operation.
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 tool has zero parameters, so the baseline is 4. The description does not need to elaborate on any parameter semantics since there are none; it correctly focuses on the tool's output and cost.
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 ('List all') and names the exact resource ('pay-per-call data products on AgentDatum'), making the tool's function unmistakable. It also implies differentiation from sibling tools like get_product_info, which likely targets a single product.
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 when to use the tool (for obtaining a full list of products) but does not explicitly contrast it with alternatives such as get_product_info or fetch_data. There is no 'when not to use' guidance, so the usage context is only inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
AlicenseAqualityAmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.Last updated23721MIT- Flicense-qualityDmaintenance56 pay-per-call MCP endpoints for AI agents. Market signals, macro economics, crypto/DeFi, geopolitical intelligence, SEC filings, GitHub velocity, sanctions screening. USDC on Base Mainnet via x402.Last updated

AfaAgent x402 API Suiteofficial
Flicense-qualityBmaintenance43 x402-enabled API tools — DeFi, wallet security, AI/ML, developer tools, SEO. Pay-per-call USDC on Base via x402 protocol.Last updated- AlicenseAqualityDmaintenanceExposes 177 crypto market intelligence endpoints to AI agents with automatic USDC micropayments from the user's wallet, enabling pay-per-call access without subscriptions.Last updated5945MIT