Zyla API Hub
Server Details
Discover and call 10,000+ production APIs from one MCP server. Pay-per-call billing for AI agents.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 8 tools
Each tool serves a clearly distinct purpose: account/payment management, catalog browsing, semantic search, API details, and API invocation. browse_catalog and search_catalog overlap in discovery but are differentiated by paginated/filtered browsing versus natural-language semantic search.
Most tools follow a clear verb_noun pattern: browse_catalog, call_api, get_api_info, get_payment_url, list_categories, search_catalog. Minor deviations are account_status (noun phrase) and register (bare verb), but the overall naming is still predictable and readable.
With 8 tools, the server is well-scoped for an API hub client. Each tool covers a necessary workflow step: registration, payment setup, status checking, discovery, detailed lookup, and invocation.
The tool set forms a complete lifecycle: register an account, add payment, check status, discover APIs, get API details, and call APIs. No critical dead ends or obvious missing operations for the stated purpose.
Available Tools
8 toolsaccount_statusAInspect
Check the current user's account status, billing, and usage. Returns plan info, API call count, the amount consumed this billing cycle in USD (amount_consumed_this_cycle_usd), the billing mode in effect (billing_mode), whether a credit card is on file, and any failed/pending payments. Use this to diagnose why API calls are blocked (missing card or failed payment). Requires the user's API key in the Authorization header.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It makes clear this is a read-only check ('Check', 'Returns'), lists the returned data, and discloses the authentication requirement (API key in Authorization header). No side effects are implied beyond reading status.
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?
Every sentence adds necessary detail: what it does, what it returns, when to use it, and what auth is required. It is detailed without being verbose and front-loads the core 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?
For a zero-parameter tool with no output schema, the description fully covers behavior, return fields, diagnostic purpose, and authentication. Nothing critical is missing for an agent to select and invoke it 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 tool has zero parameters, so there is no parameter vocabulary to explain. The baseline of 4 applies because no parameter documentation is needed.
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?
Description states a specific verb ('Check') and resource ('current user's account status, billing, and usage') and enumerates exact returned fields. It is clearly distinct from sibling tools like call_api or get_payment_url.
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?
Explicitly says to use it to diagnose why API calls are blocked due to missing card or failed payment. It does not name alternatives or exclusions, but the use case is specific and actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
browse_catalogAInspect
Browse the full Zyla API Hub catalog with pagination. Use this to explore ALL public APIs beyond the top 500. Supports filtering by category and search keyword. Returns paginated results with total count and page info.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| sort | No | Sort order: "popularity", "newest", or "name" (default: popularity) | |
| search | No | Search keyword to filter APIs by name or description (server-side search across ALL public APIs) | |
| category | No | Filter by category name (use list_categories to see available categories) | |
| per_page | No | Results per page (default: 20, max: 100) | |
| include_params | No | If true, include full endpoint parameters in the response (default: false, to keep responses compact) |
TDQS
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 states the tool returns paginated results with total count and page info, but does not disclose authentication requirements, rate limits, or that it is read-only. The description adds some behavioral context but is not comprehensive.
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 three concise sentences that front-load the core purpose and key features. Every sentence provides valuable information 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?
Given the tool has 6 parameters and no output schema or annotations, the description covers pagination, filtering, and response contents. It is mostly complete but could mention authentication or error cases for full context.
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 100%, so the baseline is 3. The description reinforces that search is server-side across all APIs and mentions filtering, but does not add significant new meaning beyond what the schema already provides.
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 it's for browsing the full Zyla API Hub catalog with pagination. It distinguishes from sibling tools like 'search_catalog' by emphasizing exploration of all public APIs beyond the top 500, 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 advises using this to explore all public APIs beyond the top 500, which sets context. However, it does not explicitly contrast with the sibling 'search_catalog' tool or specify when not to use it, lacking explicit alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
call_apiAInspect
Call an API endpoint on Zyla API Hub. Requires the user's API key and a credit card on file. Billing is pay-per-successful-request: you only pay for 2xx responses. Each API has its own price per call (shown in get_api_info), and every successful response includes cost_usd — the exact amount billed for that call. There is no monthly fee and no minimums. Usage is charged to the credit card automatically; call account_status for the billing mode in effect and the amount accrued this cycle. If a 402 error is returned with a payment_url, the user MUST open that URL in their browser to add a credit card before retrying. Pass the api_id, endpoint_id, HTTP method, and parameters.
| Name | Required | Description | Default |
|---|---|---|---|
| api_id | Yes | The numeric API ID | |
| method | No | HTTP method: GET or POST (default: GET) | |
| params | No | Key-value parameters to send with the request | |
| endpoint_id | Yes | The numeric endpoint ID within the API |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does so thoroughly. It discloses pay-per-successful-2xx billing, the cost_usd field in every successful response, automatic credit card charging, no monthly fee or minimums, and the mandatory browser flow for 402/payment_url. This is far beyond a basic 'calls an API' statement.
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 long but information-dense; each sentence adds a distinct operational fact such as billing model, cost reporting, automatic charging, and payment recovery. It is front-loaded with the core action and prerequisites before the billing details. Minor redundancy between 'credit card on file' and 'charged automatically' prevents a 5.
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 generic execution tool with no output schema, the description covers the essential contract: required inputs, auth prerequisites, billing side effects, the successful-response cost field, and the key 402 failure mode. It does not specify how the API key is passed or describe general error response shapes, but the schema and sibling tools fill much of the surrounding context.
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 documents all four parameters at 100% coverage, so the baseline is 3. The description only restates 'Pass the api_id, endpoint_id, HTTP method, and parameters' and adds no deeper meaning about how params are structured or how they map to endpoint behavior. It is not harmful, but it does not elevate the score.
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 opens with a clear verb and object ('Call an API endpoint on Zyla API Hub') and specifies the required inputs: api_id, endpoint_id, HTTP method, and parameters. It doesn't explicitly contrast the tool with catalog/lookup siblings, but its generic execution role is unmistakable.
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?
It names concrete prerequisites (API key, credit card on file), points to account_status for billing mode and accrued charges, and references get_api_info for pricing. It also gives explicit 402/payment_url retry behavior. It doesn't explicitly state 'use this tool when you need to execute the actual API call after discovering APIs', but the context strongly implies it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_api_infoAInspect
Get full details of a specific Zyla API by its numeric ID. Returns the API name, description, category, price per successful call (USD), average latency (ms), and all endpoints with their parameters, example values, and a formal JSON Schema (input_schema) for argument validation.
| Name | Required | Description | Default |
|---|---|---|---|
| api_id | Yes | The numeric API ID (e.g. 781) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Lists exactly what is returned (name, description, category, price, latency, endpoints, schema). No annotation coverage, but tool is read-only with no side effects; disclosure is adequate.
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?
Single sentence with clear structure: action, input, output. No redundant words. Every clause adds value.
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 one parameter, no output schema, and no annotations, the description fully explains what the tool does and what it returns. No gaps.
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?
Only one parameter 'api_id' with example and type already in schema. Description adds context that ID is numeric and ties to the information retrieval. Schema coverage is 100%.
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?
Clearly states the verb 'Get full details' and the resource 'specific Zyla API by its numeric ID'. Distinguishes from siblings like browse_catalog (listing) and call_api (execution).
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?
Implied use when needing full API details given an ID, but no explicit guidance on when to use versus search_catalog or browse_catalog, or prerequisites like obtaining the ID first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_payment_urlAInspect
Get a Stripe Checkout URL so the user can add or update their credit card. REQUIRED after registration and whenever a 402 error occurs. The user must open the returned URL in their browser to add/update their card. Billing is pay-per-successful-request: no monthly fee, no minimums. You are only charged for successful API responses (2xx). Prices vary per API (see get_api_info). API calls are blocked until a valid credit card is on file.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden and does so well. It discloses billing semantics (pay-per-successful request, no monthly fee), clarifies that only 2xx responses are charged, and notes that API calls are blocked without a valid card.
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 front-loaded with the core action and then provides essential trigger conditions and billing context. It is slightly longer than strictly necessary, but every sentence adds relevant decision-making or behavioral 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?
For a zero-parameter tool with no output schema, this description is complete. It covers when to call it, what the user must do with the result, how billing works, and the blocking condition, tying it together with sibling tools like register and get_api_info.
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 and 100% schema coverage by definition, so there is no parameter ambiguity. The baseline of 4 applies because no parameter documentation is needed.
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 and resource: it retrieves a Stripe Checkout URL for adding or updating a credit card. This clearly distinguishes it from siblings like call_api, register, and get_api_info.
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 states when to use the tool: REQUIRED after registration and whenever a 402 error occurs. It also explains that the user must open the URL in a browser and that API calls are blocked until a card is on file, giving clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesAInspect
List all available API categories on Zyla API Hub with the real count of public APIs in each. Use the category names returned here as the "category" parameter in browse_catalog to filter APIs by category. Example categories: Sports, Finance, Data, Science, etc.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states that the tool lists categories with counts, which is a safe read operation. It does not disclose any additional behavioral traits like authentication or rate limits, but for a simple list tool this is adequate.
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 sentences: first describes the action and result, second provides usage guidance and an example. No wasted words, front-loaded with key 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?
Given zero parameters, no output schema, and a simple purpose, the description is complete. It covers what the tool does and how its output is used, which is sufficient for an agent.
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?
There are no parameters, so baseline is 4. The description adds value by explaining how the output (category names) is used in browse_catalog, though it does not need to describe parameters.
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 verb 'List all available API categories' with specific resource 'categories on Zyla API Hub' and includes the added detail of 'real count of public APIs in each', which distinguishes it from siblings like browse_catalog.
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?
It explicitly instructs to use the returned category names as the 'category' parameter in browse_catalog, providing clear context for when to use this tool. It does not mention when not to use it, but the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
registerAInspect
Register a new Zyla API Hub account directly from the AI agent. Returns an API key AND a payment_url. The user MUST open the payment_url in their browser to add a credit card before making any API calls. Billing model: pay-per-successful-request with no monthly fee and no minimums. Each API has its own per-call price. The card is only ever charged for actual usage; call account_status to see the billing mode in effect and the amount accrued this cycle. No authentication required to call this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Full name of the user | |
| Yes | Email address (must be unique) | ||
| password | Yes | Password (min 8 characters) |
TDQS
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 does this thoroughly: it discloses that registration returns an API key and payment URL, that the user MUST open the payment_url in a browser to add a credit card before API calls, the pay-per-request billing model with no monthly fee, and that no authentication is required. This goes well beyond a bare 'registers an account' and gives the agent actionable behavioral expectations.
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 front-loaded with the core purpose and outputs, then covers the critical user action and billing model. It is a bit longer than strictly necessary, but every sentence contributes useful information—especially the billing terms and the instruction to check account_status. No filler or 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?
Given the tool itself is a simple 3-parameter registration action with no output schema, the description is complete enough for an agent to invoke it correctly and manage expectations. It spells out the outputs (API key, payment_url), the required follow-up action (open payment_url in browser), the billing mode, and authentication status. It even references account_status for accrued usage, covering the natural next step.
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?
All three parameters (name, email, password) are already fully described in the input schema with 100% coverage. The description does not add parameter-specific guidance beyond what the schema provides. Baseline 3 is appropriate because the schema already carries the semantic load here.
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 begins with a clear, specific verb and resource: 'Register a new Zyla API Hub account directly from the AI agent.' It then names the two outputs (API key and payment_url), which makes the tool's function unmistakable. This also distinguishes it from sibling tools like account_status or search_catalog, which serve different purposes.
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 clear context for when to use this tool: it is the account registration entry point and requires no authentication. It also explicitly routes the agent to account_status for billing details, which acts as a pointer to a sibling alternative for follow-up. It does not explicitly state 'use this instead of X,' but the purpose and post-conditions make the usage context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_catalogAInspect
Semantic search across ALL 10,000+ public APIs on Zyla API Hub. Natural-language queries work best (e.g. "validate an email address", "get stock prices"). Returns matching APIs ranked by relevance with their ID, name, description, category, price per successful call (USD), average latency (ms), and endpoints summary.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return (default: 10) | |
| query | Yes | What you need, in natural language (e.g. "validate an email address", "currency conversion", "weather forecast by city") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It implies a read operation via 'search' but does not explicitly disclose safety, auth requirements, or rate limits. Adds return field details but lacks explicit behavioral traits.
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 sentences with no wasted words: first sentence states core purpose, second gives query guidance and result fields. Front-loaded and efficient.
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 no output schema, the description details return fields (ID, name, description, category, price, latency, endpoints). Lacks pagination or error handling, but sufficient for a search tool with well-documented parameters.
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%, baseline 3. Description adds value by emphasizing natural-language queries and providing examples for the query parameter, and explains what the results contain, which is not in 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 clearly states the tool performs semantic search across all 10,000+ public APIs on Zyla API Hub, distinguishes from siblings like browse_catalog and get_api_info by specifying scope and query type.
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 context that natural-language queries work best and gives examples, but does not explicitly state when not to use this tool or mention alternatives beyond implied sibling differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / query / descriptionPrevious value: -"Search keyword (e.g. \"weather\", \"currency\", \"email validation\")"New value: +"What you need, in natural language (e.g. \"validate an email address\", \"currency conversion\", \"weather forecast by city\")"
1 tool update
- Changed
search_catalog1 field changed- changed
Input schema / properties / query / descriptionPrevious value: -"What you need, in natural language (e.g. \"validate an email address\", \"currency conversion\", \"weather forecast by city\")"New value: +"Search keyword (e.g. \"weather\", \"currency\", \"email validation\")"
8 tool updates
- First observed
account_status - First observed
browse_catalog - First observed
call_api - First observed
get_api_info - First observed
get_payment_url - First observed
list_categories - First observed
register - First observed
search_catalog
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
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
Connect MCP clients to 2,000+ AI models without managing provider API keys.
AI service marketplace — agents discover, call, and pay for API services automatically.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to discover and call thousands of public APIs through one MCP server, with live-verified blueprints for safe, key-free requests.1MIT
- FlicenseNot gradedqualityCmaintenancePay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.-

mpp32-mcp-serverofficial
AlicenseNot gradedqualityCmaintenanceMCP server that allows AI agents to discover and pay for thousands of APIs (x402 on Solana/Base) using a single key, with automatic payment handling and a federated catalog of machine-payable endpoints.234MIT- AlicenseNot gradedqualityDmaintenanceEnables AI agents to access a unified catalog of tools from various APIs (OpenAPI, GraphQL, MCP, Google Discovery) through the MCP protocol.MIT