AgentMart Procurement
Server Details
Procure, compare, quote, budget, and execute web extraction or scraping across providers for agents
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
8 toolsbilling_statusAgentMart Billing StatusARead-onlyInspect
Check the authenticated AgentMart account's Growth Pilot subscription, payment state, and Stripe readiness. Use for questions about whether billing is active, past due, canceled, or ready. Read-only: it does not create a session or charge anyone.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds context about the authenticated account scope and explicitly rules out side effects like creating sessions or charging, which reinforces safety expectations. It doesn't describe output format, but this is a simple status check with no output schema.
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 two sentences, front-loading the action and purpose, then adding the read-only clarification. Every sentence earns its place with no redundant or filler content.
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 parameterless tool with no output schema, the description is complete: it states the target account, the specific aspects checked (subscription, payment state, Stripe readiness), and the read-only behavior. An agent has enough information 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 the baseline is 4. There is no parameter meaning to add; the description focuses on what the tool checks rather than inputs, which is appropriate for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies a specific verb and resource: 'Check the authenticated AgentMart account's Growth Pilot subscription, payment state, and Stripe readiness.' It distinguishes this from siblings like create_checkout and create_billing_portal by focusing on read-only status inquiry rather than creating sessions or charges.
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 states when to use the tool: 'Use for questions about whether billing is active, past due, canceled, or ready.' It also clarifies what it does not do: 'does not create a session or charge anyone.' It stops short of naming alternative sibling tools, but the usage conditions are clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calibrateAgentMart Evidence CalibrationAInspect
Benchmark web-extraction vendors and collect fresh reliability, quality, latency, and cost evidence across a curated URL task set. Use only after the user explicitly approves a bounded calibration batch. Calls selected external providers directly and caps each invocation at 30 provider calls.
| Name | Required | Description | Default |
|---|---|---|---|
| repeats | No | ||
| taskIds | No | Optional standard calibration task IDs. Leave empty to use the curated 10-task set. | |
| maxCalls | No | ||
| providerIds | No | Providers to test directly. Leave empty to test every connected provider. | |
| confirmExternalCalls | Yes | Must be true only after the user explicitly approves the provider calls and usage. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false and openWorldHint=true, so the tool is known to have external effects. The description adds crucial context: it calls external providers directly and caps each invocation at 30 provider calls, making the scope and safety boundary explicit. It does not detail failure modes, auth, or cost beyond the cap, but the provided behavior is meaningfully 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?
Two sentences contain all essential information: purpose, user-approval precondition, external calls, and invocation cap. The critical guardrail is stated immediately after the purpose, and there is 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?
For a side-effecting external-call tool with no output schema, the description covers purpose, approval requirement, external nature, and batching bounds. It does not describe the result format, but the purpose statement—collect reliability, quality, latency, and cost evidence—already implies the expected output. Minor gaps in operational detail are acceptable given the other structured schema fields.
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 60%, so the description does not need to carry the full parameter burden. It adds useful context by explaining the task set is a curated URL set and that invocations are capped at 30 provider calls, which maps to maxCalls. However, it does not clarify repeats or provider selection behavior, and the schema already documents taskIds, providerIds, and confirmExternalCalls.
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 specific action—'Benchmark web-extraction vendors'—and names the resource and scope: a curated URL task set collecting reliability, quality, latency, and cost evidence. This clearly distinguishes calibrate from the billing/recommendation siblings, which perform entirely different functions.
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 an explicit precondition: use only after the user explicitly approves a bounded calibration batch. It also warns that the tool calls external providers directly, which informs risk assessment. It does not name specific alternatives or when-not-to-use conditions, but the sibling tools are unrelated and this contextual guidance is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_billing_portalOpen AgentMart Billing PortalAInspect
Open a short-lived Stripe Billing Portal only when the authenticated customer explicitly asks to manage payment methods, invoices, or the AgentMart subscription. It does not charge the customer or call an extraction provider.
| Name | Required | Description | Default |
|---|---|---|---|
| confirmCreate | Yes | Must be true only after the user explicitly approves creating a Stripe Billing Portal session. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations, the description adds valuable behavioral context: the session is short-lived, the customer must explicitly approve, and the operation has no charging or extraction-provider side effects. This meaningfully reduces ambiguity for a tool that could otherwise be confused with a purchase/checkout flow.
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 filler. The action and consent condition are front-loaded, and the second sentence adds only the side-effect exclusions that genuinely matter for correct selection. Every clause earns its place.
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 single-boolean tool with annotations and 100% schema coverage, the description covers when to use it, consent requirements, and important non-effects. The only minor gap is not describing what the tool returns, such as a portal URL, but with no output schema and a simple operation this is a minor omission.
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 only parameter, confirmCreate, is fully documented in the schema with a const true constraint and a clear description. The tool description's consent condition mirrors the schema's confirmation requirement rather than adding new parameter-level semantics, so the baseline score 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 names a specific action and resource: 'Open a short-lived Stripe Billing Portal.' It clearly scopes the tool to explicit customer requests to manage payment methods, invoices, or the AgentMart subscription, and distinguishes it from purchase/execution flows by stating it does not charge or call an extraction provider.
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 a clear, explicit trigger condition: only use when the authenticated customer explicitly asks to manage billing items. It also states exclusions ('does not charge... or call an extraction provider'), which routes non-billing-management requests elsewhere, though it does not explicitly name the alternative sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_checkoutStart AgentMart Growth Pilot CheckoutAInspect
Start a secure Stripe Checkout only when the authenticated customer explicitly asks to subscribe to the $149/month AgentMart Growth Pilot. Creates a hosted Checkout session; no charge occurs unless the customer completes Checkout.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations, the description adds meaningful behavioral guarantees: it merely creates a hosted session and does not charge unless the customer completes Checkout. It also flags the security aspect. It contradicts nothing in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two focused sentences lead with the action and condition, then clarify the payment behavior. Every clause earns its place.
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 parameterless action, the description covers purpose, trigger, security, and charge timing. It does not describe the return payload (e.g., Checkout session URL), but no output schema exists and the core invocation guidance is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the schema carries no semantic burden. The description still clarifies the implicit context (authenticated customer, explicit subscription request) that would otherwise be missing.
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 action ('start a secure Stripe Checkout') with the exact resource ($149/month AgentMart Growth Pilot) and a precise trigger (customer explicitly asks to subscribe). This differentiates it from sibling create_billing_portal and other billing 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 gives a clear condition for use: only when the authenticated customer explicitly asks to subscribe. It does not, however, name sibling alternatives or explain when to use create_billing_portal, quote, or billing_status instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
executeAgentMart ExecuteAInspect
Execute, scrape, or extract content from a URL through the best eligible connected web-extraction provider. Use only after the user explicitly asks to run the extraction. This makes external provider calls, records billable usage, enforces account limits, and may fall back to another eligible provider.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to extract. | |
| minQuality | No | ||
| minCharacters | No | ||
| optionalMarkers | Yes | ||
| requiredMarkers | Yes | Strings expected in a successful result. | |
| minRequiredMarkerRatio | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses several non-obvious behaviors beyond the annotations: it makes external provider calls, records billable usage, enforces account limits, and may fall back to another eligible provider. This is valuable context that annotations alone do not convey, and it does not contradict the annotation flags.
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 front-loads the core purpose in the first sentence, followed by a usage condition and behavioral warnings. The phrase 'Execute, scrape, or extract content' is slightly redundant, but overall the description is efficient and well-organized.
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?
While the high-level behavior is clear, the tool has six parameters, no output schema, and critical extraction-quality controls that the description does not address. An agent would not know how to set markers, quality thresholds, or character minimums correctly, or what a successful result looks like. This is a significant completeness gap for a non-trivial 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?
Schema description coverage is only 33%, with url and requiredMarkers documented, but minQuality, minCharacters, optionalMarkers, and minRequiredMarkerRatio lack schema descriptions. The tool description does not explain these parameters, their defaults, or how markers and quality thresholds affect extraction, so it fails to compensate for the coverage 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 identifies the operation: executing, scraping, or extracting content from a URL via a connected web-extraction provider. This sufficiently distinguishes it from sibling tools like billing_status, quote, and recommend, which handle unrelated billing and recommendation tasks.
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 the primary usage condition: 'Use only after the user explicitly asks to run the extraction.' It also warns about external provider calls and billable usage. It does not name alternative extraction tools, but no such sibling is present, so the guidance is clear and practical.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
quoteAgentMart QuoteARead-onlyInspect
Discover and compare web-extraction procurement options when an agent or user needs a price, quote, budget, vendor mix, provider allocation, or sourcing plan for scraping URLs at projected monthly volume. Returns an account-specific executable-now plan plus a broader option with readiness, evidence, assumptions, and warnings. Read-only: it never calls an extraction provider.
| Name | Required | Description | Default |
|---|---|---|---|
| minQuality | No | Minimum provider quality threshold, from 0 to 1. | |
| minCompletion | No | Minimum expected completion rate, from 0 to 1. | |
| monthlyExtractions | Yes | Projected monthly web extractions. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds useful behavioral context beyond the readOnlyHint annotation by explicitly stating 'it never calls an extraction provider.' It also discloses what the response contains: an account-specific executable-now plan, a broader option, readiness, evidence, assumptions, and warnings. This gives the agent a clear model of side effects and output content.
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 carry the full value: the purpose and trigger condition are front-loaded, the return contents are summarized, and the read-only guarantee is stated plainly. There is no wasted wording or repetition of schema details.
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 tool with no output schema, the description compensates well by summarizing the return shape: an executable-now plan, a broader option, readiness, evidence, assumptions, and warnings. Combined with full schema coverage and clear read-only annotations, an agent has enough context to decide whether to call it. It could be slightly richer about what 'broader option' means, but it is not a material 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 100%, so the baseline of 3 applies. The description does not add parameter-specific meaning beyond the schema; it only indirectly references monthlyExtractions through 'projected monthly volume.' The schema already documents minQuality and minCompletion, so the description adds no extra semantic value for 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 states a specific verb ('Discover and compare') and a clear resource ('web-extraction procurement options'), then enumerates the exact decision needs it addresses: price, quote, budget, vendor mix, provider allocation, or sourcing plan. This clearly distinguishes it from execution or billing siblings even without naming them.
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 frames when to use the tool: 'when an agent or user needs a price, quote, budget, vendor mix, provider allocation, or sourcing plan for scraping URLs at projected monthly volume.' It gives clear context and even indicates this is a planning/comparison step rather than an execution step, though it does not name specific alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommendAgentMart Procurement RecommendationARead-onlyInspect
Decide whether to stay on current web-extraction provider plans, overflow to another vendor, or upgrade subscriptions. Use for procurement, vendor, capacity, and cost decisions based on current usage and projected remaining URL extractions. Read-only: it never calls an extraction provider.
| Name | Required | Description | Default |
|---|---|---|---|
| minQuality | No | ||
| minCompletion | No | ||
| remainingExtractions | Yes | Projected extractions remaining in the current billing cycle. | |
| maxRemainingExtractions | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only and non-destructive, and the description reinforces this by explicitly stating 'Read-only: it never calls an extraction provider.' This adds valuable assurance about external side effects. It does not contradict the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: the decision purpose comes first, followed by usage context and then a safety-relevant read-only note. Every sentence adds distinct value with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description conveys the core decision among stay, overflow, or upgrade, and the read-only behavior is clear. However, there is no output schema and the description does not explain how parameters like minQuality, minCompletion, or maxRemainingExtractions influence the recommendation, nor does it distinguish this tool from close siblings. This leaves moderate gaps for an agent deciding how to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 25%, so the description must compensate by explaining parameters. It only hints at 'remaining URL extractions,' matching the required remainingExtractions field, while minQuality, minCompletion, and maxRemainingExtractions are left unexplained. The description fails to clarify what these thresholds and capacity values mean for the recommendation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific decision task — whether to stay on current plans, overflow to another vendor, or upgrade subscriptions — which clearly explains what the tool does. It also anchors the tool in procurement, vendor, capacity, and cost decisions, helping an agent separate it from siblings like usage or quote, though it does not explicitly name those alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context: use it for procurement, vendor, capacity, and cost decisions based on current usage and projected remaining URL extractions. It does not, however, state when not to use it or explicitly point to sibling tools such as usage or quote as alternatives, so it falls short of full routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
usageAgentMart UsageARead-onlyInspect
Check current-month web-extraction usage, provider units, estimated provider spend, estimated customer charge, and remaining call and spending limits for the authenticated AgentMart account. Calibration calls are excluded. Read-only.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already supply readOnlyHint=true and destructiveHint=false. The description adds useful context that usage is current-month, scoped to the authenticated account, and that calibration calls are excluded, but it does not go deeper into rate limits or response behavior.
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, well-structured sentence with the key resource and time scope front-loaded, followed by a compact list of returned values and a concise exclusion note. Every phrase earns its place.
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, read-only usage check, the description covers the main return values and account scope. It does not specify response format or explicitly route to billing_status, but those are minor gaps for a tool this simple.
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, so the baseline is 4. No parameter-specific semantics are needed, and the description does not try to invent any.
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 a specific action ('Check') and resource ('current-month web-extraction usage'), and enumerates the returned data. It does not explicitly differentiate itself from siblings like billing_status, so it stops 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 intended use case (checking current-month usage and remaining limits) is implied clearly, but there is no explicit guidance about when to choose this over billing_status or other siblings, and no exclusions are stated.
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.
8 tool updates
- First observed
billing_status - First observed
calibrate - First observed
create_billing_portal - First observed
create_checkout - First observed
execute - First observed
quote - First observed
recommend - First observed
usage
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
- mcpOAuthcom.sequentum
Turn the web into structured, reliable, actionable enterprise data for AI Agents
Get dollar quotes from 200+ LLMs before any work runs; accept, execute, and verify quality.
Web scraping for AI agents. Extract text and metadata from any URL worldwide. $0.005/page.
Enable language models to perform advanced AI-powered web scraping with enterprise-grade reliabili…
Related MCP Servers
AlicenseNot gradedqualityBmaintenanceWeb data for AI agents: scrape, crawl, search, deep research, site monitoring, browser automation1003Apache 2.0- AlicenseAqualityDmaintenanceEnables AI agents to create, compare, and track purchases with structured buying workflows, offer comparison, and merchant verification.5MIT
- AlicenseNot gradedqualityDmaintenanceEnables web scraping, crawling, structured data extraction, and browser automation through multiple AI agents including OpenAI's CUA, Anthropic's Claude Computer Use, and Browser Use.17MIT
- AlicenseNot gradedqualityBmaintenanceThe web data platform for AI agents. Fetch, search, crawl, extract, monitor, and screenshot any URL. 55+ domain extractors, 65-98% token savings. 7 MCP tools included.33212AGPL 3.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Most tools target distinct actions: billing status, checkout creation, execution, usage, and calibration are clearly separated. The main ambiguity is between quote and recommend, which both address procurement/vendor decisions, though their descriptions clarify different outputs.
Tool names follow no consistent pattern: billing_status and usage are noun phrases, create_billing_portal and create_checkout use verb_object, while execute, quote, recommend, and calibrate are bare verbs. The names are readable but stylistically mixed.
Eight tools is a well-scoped count for a procurement-focused server covering both web-extraction operations and subscription billing. Each tool maps to a distinct functional need without redundancy.
The extraction procurement lifecycle is well covered with quote, calibrate, execute, usage, and recommend, and billing has status, checkout, and portal access. The main gap is no explicit cancel/update subscription tool, though the billing portal likely covers that indirectly.