AgentBridge
Server Details
AgentBridge is the only MCP server that gives AI agents access to structured China knowledge assets—university reports, industry briefings, policy analysis, and real-time web content—through x402 micropayments on Base. Everything is machine-readable, pay-per-use, and settled in USDC.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 2.9/5 across 4 of 4 tools scored. Lowest: 2.3/5.
Each tool targets a fairly distinct purpose: status, searching assets, fetching asset metadata, and converting web pages. The only potential confusion lies between fetch_asset and search_assets, but their descriptions clearly indicate one is for discovery and the other for metadata/payment retrieval.
Naming is mixed: agentbridge_status uses a server-prefix style, while the other three follow a clear fetch_/search_ verb_noun pattern. The verbs are readable, but agentbridge_status breaks the otherwise consistent convention.
Four tools is appropriate for a focused knowledge-asset server. There is no bloat, and each tool contributes to the core workflow of checking status, discovering assets, and retrieving asset metadata.
The surface covers status, search, and metadata retrieval, but notable gaps exist such as direct asset content access or purchase fulfillment. fetch_web_page feels tangential and does not fill this gap, leaving the asset lifecycle incomplete.
Available Tools
4 toolsagentbridge_statusCInspect
AgentBridge MCP status
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
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 only says 'status,' which weakly implies a read-only query, but it does not state what kind of status, whether there are side effects, or what information is returned. This leaves the agent relying on a reference.
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 short, but it is under-specified rather than genuinely concise. It only restates the tool name with slightly different wording and provides no extra context that would help an agent understand what the tool is for.
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 total description is a three-word phrase; it does not explain what the status represents, when to call it, or what operational context matters. Even though the output schema covers the return value, the use case and invocation intent are 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 schema coverage is complete, so there is no package information to document. The baseline for 0 parameters is 4, and the description does not need to compensate for any schema gaps.
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 'AgentBridge MCP status' is nearly a restatement of the tool name and lacks a clear verb indicating what the tool does, such as returns, checks, or reports. It identifies the topic but not the actual operation, and it does not differentiate the tool from siblings like fetch_asset or search_assets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool versus alternatives. No context is given for when it should be called, such as before performing asset operations, or whether it is a health/readiness check. The sibling list makes this gap noticeable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_assetBInspect
Retrieve AgentBridge knowledge asset metadata and payment endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the behavioral burden. It implies a read-only operation via 'Retrieve' and names what is returned, but it does not disclose prerequisites, rate limits, authentication expectations, or any side effects. It is neither misleading nor richly transparent.
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 and contains no filler. Every phrase provides relevant information about the tool's purpose.
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 a single required parameter and an output schema, the description is close to sufficient, but it would benefit from clarifying what asset_id ought to contain and when to use fetch_asset versus search_assets.
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% and the description does not explain asset_id beyond the tool's name and context. An agent must infer that asset_id identifies a knowledge asset, getting no guidance on format, source of IDs, or its relation to 'payment endpoint'.
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 verb 'Retrieve' plus the object 'AgentBridge knowledge asset metadata and payment endpoint' clearly states the operation and its resource. It does not explicitly differentiate itself from sibling tools like search_assets or fetch_web_page, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool instead of search_assets, fetch_web_page, or agentbridge_status. It does not mention how asset_id is obtained or when a caller should prefer this tool over a sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_web_pageBInspect
Fetch webpage content and convert it to clean Markdown.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must account for behavioral recompensate. It discloses the core behavior: fetching a remote web page and transforming it to Markdown. However, it does not mention whether this is read-only, whether there are auth or rate-limit implications, or how failures are surfaced.
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?
One sentence, front-loaded and free of noise. Every word earns its place. It could add one or two more sentences for behavioral context without becoming excessive, but as given the structure is tight.
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 a one-parameter schema and an output schema already describing return values, the description provides a baseline: fetch a URL and get reader Markdown. It is not fully complete because there is no guidance about constraints, prerequisites, or intended scenarios, but it suffices for a simple fetch 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 schema has one parameter with no description coverage (0%), and the tool description does not explicitly clarify the meaning or format of the 'url' parameter. Although the parameter name is intuitive, the description doesn't compensate for the coverage gap with any additional constraints.
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?
Specifically names the operation (fetch), the resource (webpage content), and the output format (clean Markdown), which makes the tool's function unambiguous and distinct from asset-related siblings. It doesn't explicitly reference a sibling or say which tool NOT to choose, but the target resource differs enough from 'asset' and 'status'.
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 information about when to use this tool versus siblings such as fetch_asset, or when not to use it. The description is purely about what it does, leaving the decision of which tool to use to the agent's inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_assetsBInspect
Search available AgentBridge knowledge assets.
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden, but it only says 'Search available AgentBridge knowledge assets.' It provides no details about search semantics (exact/fuzzy, case sensitivity), pagination, result format, or what happens with an empty default keyword. This is a thin description for a tool that yields results.
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 is easy to parse and free of filler. It loses a mark because it is so terse that it omits key contextual details; still, for the stated purpose it is appropriately brief.
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 a single optional parameter and no output schema in the description, the tool is fairly simple. But the complete absence of guidance on result scope or fallback behavior makes it incomplete for an agent deciding between this and fetch_asset. The presence of an output schema partially compensates.
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 0% and the description does not mention the keyword parameter at all. With 1 optional param (keyword, default ''), the description should explain what is being matched (asset name, content, metadata) and the effect of leaving it blank. It adds no value beyond what the schema already states.
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 'Search available AgentBridge knowledge assets.' uses a specific verb (Search) and a clear resource (AgentBridge knowledge assets), making the tool's purpose clear. It implicitly differentiates from siblings like fetch_asset through the contrasting verb 'search' vs 'fetch', though it does not explicitly name the difference.
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 clearly implies the tool is for searching knowledge assets when you need to find one, which is useful. However, it gives no explicit guidance on when to use this vs fetching an asset directly or when not to use it, leaving the choice to inference from the sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
Market data and web intelligence for AI agents, paid per call in USDC on Base via x402.
Production-grade MCP gateway delivering 8 real-time AI tools with instant x402 micropayments settled in USDC on Base Mainnet or SPL-USDC on Solana. Features Basescan contract auditing, wallet analytics, headless browser scraping, and pre-scraped oracle data feeds.
Production-grade MCP gateway delivering 8 real-time AI tools with instant x402 micropayments settled in USDC on Base Mainnet or SPL-USDC on Solana. Features Basescan contract auditing, wallet analytics, headless browser scraping, and pre-scraped oracle data feeds.
Pay-per-call crypto market intelligence for AI agents. USDC on Base via x402.
Related MCP Servers
- FlicenseNot gradedqualityAmaintenanceAI knowledge marketplace for China data via x402 payments. Access university reports, industry briefings, and web content through Base chain USDC payments.2
- FlicenseNot gradedqualityDmaintenance56 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.
- AlicenseAqualityCmaintenanceMarket intelligence MCP server enabling AI agents to buy crypto sentiment reads, divergence verdicts, and analyst answers via pay-per-call x402 micropayments on Base.6138MIT

oom-x402-mcpofficial
FlicenseNot gradedqualityBmaintenanceMCP server exposing 1,000+ pay-per-call API endpoints across agent infrastructure (memory, coordination, secrets, verification), data, compute, finance, weather, geography, and reference categories — payments via x402 protocol in USDC on Base.