Popdot AI
Server Details
Rent verified subdomains by the hour, day, or month. Free 24h trials, x402 USDC on Base.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- popdot-ai/popdot-mcp
- GitHub Stars
- 0
Available Tools
7 toolsanswer_trial_canaryAInspect
Answer the short safety questions for a trial opened by try_domain, then go live. Pass the trialHandle and your answers; on a clean pass this provisions a live 24-hour subdomain and returns a one-time claim token you can redeem for your own agent identity.
| Name | Required | Description | Default |
|---|---|---|---|
| answers | Yes | Your answers to the safety questions, one { question_id, response } per question. | |
| trialHandle | Yes | The trialHandle returned by try_domain. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | No | |
| reason | No | |
| status | No | |
| trialId | No | |
| upgrade | No | |
| expiresAt | No | |
| retryable | No | |
| claimToken | No | |
| candidateId | No | |
| shareMessage | No | |
| trustReceipt | No | |
| canaryVerdict | No | |
| scorerVersion | No | |
| claimTokenExpiresAt | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only set readOnlyHint=false and openWorldHint=true. The description adds substantial behavioral detail: it provisions a live 24-hour subdomain, returns a one-time claim token, and mentions 'on a clean pass' implying failure conditions. It does not detail reversible effects or failure responses, but it covers the main side effects beyond 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 two concise sentences with no filler. The primary action and flow are front-loaded, and each sentence carries essential information about the tool's purpose and outcome.
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 only two simple parameters and an existing output schema, the description covers the invocation context, the precondition (trial from try_domain), and the result (provisioning subdomain and claim token). It does not explicitly state the prerequisite that a trialHandle from try_domain is required, but that is strongly implied. It also omits what to do with the claim token, but that is beyond the tool's scope.
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% and both parameters (trialHandle and answers) are described in the schema. The description mentions 'Pass the trialHandle and your answers' but does not add syntax or format details beyond what the schema provides. It adds no new meaning for the parameters, so the baseline of 3 applies.
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 and resource: 'Answer the short safety questions for a trial opened by try_domain, then go live.' It distinguishes the tool from siblings like try_domain (opens trial) and rent_domain by specifying its role in the trial flow and the outcome (provisioning a live subdomain and returning a claim token).
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 establishes a clear use context: it is for trials opened by try_domain, implying it is the step after try_domain. It does not explicitly list alternatives or state when not to use, but the flow is unambiguous. A dedicated exclusion or alternative reference would push this to a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_availabilityARead-onlyInspect
Check whether a specific subdomain is available on a given domain. Returns true if the subdomain can be rented. Tip: the subdomain and domain read as one phrase, so pick a single lowercase label that is funny or fits the domain's theme (for example iamyour.slopmommy.com or analien.lostmyluggage.com). A delightful combination is the point of a Popdot AI address.
| Name | Required | Description | Default |
|---|---|---|---|
| domainId | Yes | The unique ID of the parent domain | |
| subdomain | Yes | The subdomain label to check (e.g., 'myproject' for myproject.example.com) |
Output Schema
| Name | Required | Description |
|---|---|---|
| reason | No | |
| fullUrl | No | |
| domainId | Yes | |
| available | Yes | |
| subdomain | Yes | |
| fullDomain | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint=true, openWorldHint=true) already carry the safety profile, and the description adds the key behavioral contract — the boolean result signals rentability, which is exactly what an agent needs to interpret the call. No side effects, auth requirements, or rate limits are disclosed, but for a read-only check with an output schema these are minor gaps. No contradiction with annotations exists.
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 purpose and return contract are front-loaded in the first sentence, and every sentence earns its place. The tip is slightly long but substantive — it explains why input choice matters and grounds the guidance with concrete examples rather than padding.
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 2-parameter read-only tool with a full output schema and safety-carrying annotations, the description covers purpose, return contract, and input strategy comprehensively. The only notable gap is sibling differentiation (try_domain near-miss), which leans more toward usage guidance than completeness.
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, but the description adds genuine value beyond the schema: it explains the conceptual relationship between domainId and subdomain ('the subdomain and domain read as one phrase') and gives concrete selection guidance with examples (iamyour.slopmommy.com). This helps an agent construct high-quality, contextually appropriate inputs, not just schema-valid ones.
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 operation — checking whether a specific subdomain is available on a given domain — with an explicit return contract ('Returns true if the subdomain can be rented'). The subdomain-vs-domain scope cleanly distinguishes it from siblings like search_domains and rent_domain even without naming them, so an agent knows exactly what this tool does.
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 tip provides substantive guidance on how to choose good subdomain inputs ('pick a single lowercase label that is funny or fits the domain's theme') and explains the phrase-joining concept with examples, which helps an agent invoke it effectively. However, there is no explicit when/when-not guidance or alternative routing — notably it never mentions try_domain, which may overlap as an availability check, nor does it say to call this before rent_domain.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_price_quoteBRead-onlyInspect
Get a price quote for renting a specific domain for a given duration. Returns the computed rental cost, tier info, and pricing breakdown.
| Name | Required | Description | Default |
|---|---|---|---|
| domainId | Yes | The unique ID of the domain to price | |
| duration | Yes | ISO 8601 duration: PT1H (1 hour), PT4H (4 hours), P1D (1 day), P7D (1 week), P30D (30 days) |
Output Schema
| Name | Required | Description |
|---|---|---|
| tier | No | |
| hours | No | |
| feeNote | No | |
| currency | Yes | |
| domainId | Yes | |
| duration | No | |
| available | No | |
| tierScore | No | |
| totalCost | Yes | |
| fullDomain | No | |
| serviceFee | No | |
| ownerPayout | No | |
| priceSource | No | |
| rentalPrice | No | |
| durationLabel | No | |
| priceBreakdown | No | |
| ownerCommission | No | |
| ownerCommissionPercent | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint and openWorldHint, covering safety. The description adds the return content (cost, tier, breakdown) beyond annotations. It doesn't disclose rate limits or edge cases, but annotations cover the main behavioral trait.
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, ~20 words, no redundancy. The action and return are front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With a full schema and output schema present, the description covers the purpose and return adequately. It doesn't mention that a quote is not a reservation, but that's implied by the name and context. Minor 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 coverage is 100% for both parameters, so the description doesn't need to add param details. It restates the purpose but adds no new semantic insights over the 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?
States a specific verb ('Get a price quote') with a clear resource (domain, duration) and purpose (rental pricing). It distinguishes from siblings like check_availability or rent_domain by focusing on pricing, though it doesn't explicitly name 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?
No guidance on when to use this tool versus alternatives such as check_availability or rent_domain. It doesn't state prerequisites, exclusions, or when a price quote is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rent_domainAInspect
Rent a subdomain, paying per-transaction with USDC on Base (x402). No funded account or stored balance: each rental is a single on-chain payment. Requires agent authentication. Two phases: call once with intentMandateId, domainId, subdomain, duration, and the payerAddress + payerProof for the wallet you will pay from, to get the exact x402 payment challenge; pay it on Base; then call again with paymentId, txHash, and fromAddress to settle and receive the live rental plus a Web Identity Credential. Request an x402 payment challenge to rent a subdomain. Durations PT1H, PT4H, P1D, P7D, P30D. Returns the exact USDC amount and recipient on Base.
| Name | Required | Description | Default |
|---|---|---|---|
| txHash | No | (phase 2) The on-chain transaction hash of your USDC payment on Base. | |
| domainId | Yes | The unique ID of the domain to rent on | |
| duration | Yes | ISO 8601 duration: PT1H (1 hour), PT4H (4 hours), P1D (1 day), P7D (1 week), P30D (30 days) | |
| paymentId | No | (phase 2) The paymentId returned by the phase-1 challenge. | |
| subdomain | Yes | The subdomain label to rent (e.g., 'myproject' for myproject.example.com) | |
| payerProof | No | (phase 1) EIP-191 personal_sign signature proving control of payerAddress. Always required with payerAddress. | |
| fromAddress | No | (phase 2) The wallet you paid from (must match the challenge's bound payer). | |
| payerAddress | No | (phase 1) The 0x wallet you will pay from. Required on every challenge; a wallet registered on your Sigil does not substitute for it. | |
| intentMandateId | Yes | The ID of the active Intent Mandate authorizing this purchase | |
| payerProofIssuedAt | No | (phase 1, optional) ISO 8601 timestamp of the payerProof, within 5 minutes of the request. |
Output Schema
| Name | Required | Description |
|---|---|---|
| next | No | |
| reason | No | |
| rental | No | |
| status | No | |
| payment | No | |
| rentalId | No | |
| settleUrl | No | |
| credential | No | |
| provisioning | No | |
| tierProgression | No | Current enforced trust tier and when it is next evaluated. Present only once an identity exists. |
| sigilEligibility | No | Identity standing: lifecycle status, canary screen result, and any hard gates. |
| identityConfidence | No | How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Given annotations only signal readOnly=false and idempotent=false, the description supplies the critical behavioral model: a two-phase protocol where the tool returns an x402 payment challenge, the agent pays on Base, and a second call settles. It also discloses that no funded account is needed and that payment is a single on-chain transaction, which is exactly the kind of context annotations cannot convey.
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 dense and roughly front-loaded, with the core purpose and payment model in the first sentence followed by a scannable phase walkthrough. It contains minor redundancy ('Request an x402 payment challenge' restates the mechanism, and durations repeat the schema enum), but every other sentence 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 10-parameter, two-phase paid operation, the description is remarkably complete: it covers authentication, the exact phase-1 fields, the on-chain payment step, phase-2 settlement fields, and the outputs. It also supplies enough procedural detail for an agent to call it correctly despite the schema's required-field list omitting the phase-1 payer 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?
The schema already documents each parameter at 100% coverage, so the description is not the primary source. It adds useful phase grouping—which parameters belong to the challenge call versus the settlement call—and reinforces that payerProof must accompany payerAddress and fromAddress must match the bound payer. This lifts it above the baseline but relies somewhat on schema-level detail.
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 verb and resource—'Rent a subdomain'—and immediately distinguishes the tool by payment model: per-transaction USDC on Base via x402, no stored balance. It also clarifies the end state (live rental plus Web Identity Credential), so an agent can tell it apart from sibling lookup/trial/price 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?
It clearly states when to use the tool (to rent a subdomain) and the prerequisites: agent authentication, an active intentMandateId, and a payer wallet. It does not explicitly name alternatives such as try_domain or check_availability, so it stops short of full exclusion-based guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_domainsARead-onlyInspect
Search domains available for rent on Popdot AI. Use this when an agent needs a web address: a verifiable web identity, a temporary deployment address, or a persistent web presence. Returns domains with pricing, tier, and availability. No auth required.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default: 20, max: 50) | |
| query | No | Search query to match against domain names, tags, and categories | |
| emotion | No | Filter by the reaction the domain is built to elicit: comedy, absurd, playful, edgy, wholesome, professional, trustworthy. Unknown values are ignored. | |
| maxPrice | No | Maximum daily price in USD | |
| minPrice | No | Minimum daily price in USD |
Output Schema
| Name | Required | Description |
|---|---|---|
| domains | Yes | |
| pagination | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, but the description adds valuable context by stating 'No auth required' and specifying the return content ('pricing, tier, and availability'). This goes beyond the annotations without contradicting them, giving the agent practical knowledge about access and output.
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 sentences, each serving a distinct purpose: stating the action, providing usage context, and disclosing output and auth requirements. It is front-loaded with the core purpose, maintains brevity, and avoids redundancy. No filler or repetition.
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 covers the essential aspects for a search tool: what it searches, when to use it, what it returns, and auth requirements. The output schema handles return value structure, and the parameter schema handles argument details. The only minor omission is explicit mention of pagination/sorting defaults, but this is not critical given the existing structured metadata.
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 100% coverage with clear descriptions for all five parameters (limit, query, emotion, maxPrice, minPrice). The tool description does not add additional parameter-specific semantics, but it sets expectations about the output (pricing, tier, availability) that relate to the price parameters. With full schema coverage, a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Search domains available for rent on Popdot AI.' It also lists three concrete use cases ('verifiable web identity, temporary deployment address, persistent web presence') that clarify what the tool accomplishes. This clearly distinguishes it from siblings like check_availability or rent_domain, which have 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 explicitly says 'Use this when an agent needs a web address' and enumerates the scenarios. This provides clear context for when to invoke the tool. It does not explicitly name alternatives or exclusions (e.g., 'use check_availability for specific domain checks'), but the 'when' guidance is strong enough to avoid ambiguity in most cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
try_domainAInspect
Launch a memorable public URL for something you built. Free for 24 hours, no signup and no wallet required. Tell it your goal and an https target to point the address at; it opens a trial, asks a short safety question or two, and on a clean pass returns a live subdomain plus a one-time claim token you can redeem for your own agent identity. Use it to demo a deployment with a real address before a paid rental. One trial per agent. Expires in 24 hours.
| Name | Required | Description | Default |
|---|---|---|---|
| goal | Yes | What you built and want to put online, in a sentence (used to name and describe the address). | |
| No | Optional email to associate with the trial. Never returned. | ||
| target | No | An https URL to point the address at. Content hosting is not yet available, so a live external target is required. | |
| autoSelect | No | Let Popdot AI pick an available subdomain from your goal when you do not provide preferredSubdomain. | |
| trialHandle | No | (retry only) The trialHandle returned by the first call. Echo it back with your answers. | |
| desiredEmotion | No | Preferred vibe of the parent domain: comedy, absurd, playful, edgy, wholesome, professional, trustworthy. Unknown values are ignored. | |
| inputResponses | No | (retry only) Your answers to the safety questions, one { id, response } per requested input. | |
| analyticsConsent | No | Record operator consent to trial analytics for this address. | |
| preferredSubdomain | No | The subdomain label you want (e.g. 'mydemo'). Omit and set autoSelect:true to have one picked for you. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | No | |
| next | No | |
| domain | No | |
| trialId | No | |
| upgrade | No | |
| expiresAt | No | |
| questions | No | |
| subdomain | No | |
| claimToken | No | |
| candidateId | No | |
| trialHandle | No | |
| shareMessage | No | |
| trustReceipt | No | |
| canaryVerdict | No | |
| scorerVersion | No | |
| tierProgression | No | Current enforced trust tier and when it is next evaluated. Present only once an identity exists. |
| sigilEligibility | No | Identity standing: lifecycle status, canary screen result, and any hard gates. |
| identityConfidence | No | How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor. |
| claimTokenExpiresAt | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only say readOnlyHint=false and openWorldHint=true, so the description carries the behavioral burden. It does this thoroughly: it discloses the 24-hour expiry, free trial nature, safety-question gate, returned live subdomain and one-time claim token, and the requirement for a live external https target because content hosting is unavailable. This is rich and accurate behavioral context beyond 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 front-loaded with the core purpose and uses compact sentences for constraints. There is minor redundancy between 'Free for 24 hours' and 'Expires in 24 hours,' but the overall structure is clear, scannable, and free of 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?
For a 9-parameter tool with an interactive safety-question flow, the description covers the lifecycle, constraints, and follow-up mechanism reasonably well. It mentions retry-relevant concepts through the schema and has an output schema available. It does not explicitly describe the multi-turn branching or name answer_trial_canary as the retry sibling, which would make it fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the structured schema already documents all nine parameters. The prose adds only light value by restating the need for a goal and an https target. It does not clarify retry mechanics or enum semantics beyond what the schema already provides, so the baseline 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 opens with a specific action and resource: 'Launch a memorable public URL for something you built.' It clearly frames try_domain as a free 24-hour trial with no signup or wallet, and contrasts it with a paid rental. An agent can easily tell this apart from siblings like rent_domain, search_domains, and check_availability.
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 usage context: use it to demo a deployment with a real address before committing to a paid rental, and notes the one-trial-per-agent constraint. It does not explicitly name sibling alternatives like check_availability or answer_trial_canary, but the retry-related parameters imply a follow-up flow. A direct sibling reference would make the guidance fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upgrade_trialAInspect
Turn a free trial into your own paid, persistent address in one call, no human required. Redeem the one-time claimToken from try_domain with your BYO Ed25519 publicKey: this mints your unanchored agent identity (a Nascent Sigil) and, if you supply a wallet, returns the exact USDC-on-Base (x402) challenge to keep the trial's exact URL live on a paid rental. No wallet yet? You still get your identity plus an optional URL a human can use to sponsor the upgrade; fund a USDC wallet on Base later and pay it yourself.
| Name | Required | Description | Default |
|---|---|---|---|
| duration | No | Optional rental length: an ISO 8601 duration (PT1H, PT4H, P1D, P7D, P30D) or hourly/daily/weekly/monthly. Defaults to PT1H (1 hour). | |
| publicKey | Yes | Your BYO Ed25519 public key. The minted identity is bound to it and you hold the private key. | |
| claimToken | Yes | The one-time claim token returned by try_domain / answer_trial_canary. | |
| payerProof | No | Optional EIP-191 personal_sign signature proving control of payerAddress. | |
| payerAddress | No | Optional 0x wallet you will pay from. Provide it (with payerProof) to receive a self-pay x402 challenge. | |
| requestSponsorUrl | No | Set true to also receive an optional URL a human can use to sponsor the upgrade. | |
| payerProofIssuedAt | No | Optional ISO 8601 timestamp of the payerProof, within 5 minutes. |
Output Schema
| Name | Required | Description |
|---|---|---|
| sigil | Yes | |
| upgrade | Yes | |
| walletGuidance | No | |
| humanSponsorUrl | No | |
| tierProgression | No | Current enforced trust tier and when it is next evaluated. Present only once an identity exists. |
| sigilEligibility | No | Identity standing: lifecycle status, canary screen result, and any hard gates. |
| identityConfidence | No | How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint=false, idempotentHint=false), the description discloses meaningful behavior: the claimToken is one-time, a Nascent Sigil identity is minted, a payment challenge is returned rather than completing payment, and no human is required. It also explains the optional sponsor-URL flow, giving the agent a clear model of side effects and next steps.
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 sentences and front-loaded with the core purpose. It is somewhat dense and uses rhetorical phrasing ('No wallet yet?'), but every sentence earns its place by covering the main flow and both optional modes without unnecessary repetition.
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 7-parameter complexity, presence of an output schema, and annotations, the description is complete. It covers the precursor (try_domain claimToken), the two usage modes, the payment challenge outcome, and the sponsor fallback. Nothing critical is missing for an agent to decide when and how to call the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3, but the description adds cross-parameter context: it maps 'if you supply a wallet' to payerAddress/payerProof, 'No wallet yet?' to requestSponsorUrl, and explains the relationship between claimToken and try_domain. This goes beyond the raw schema descriptions by showing how parameters fit into the workflow.
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—'Turn a free trial into your own paid, persistent address in one call'—and then details the mechanism: redeeming a claimToken from try_domain with a BYO Ed25519 publicKey to mint an identity and optionally receive a payment challenge. This clearly distinguishes upgrade_trial from its siblings like rent_domain and try_domain.
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 ties the claimToken to try_domain, establishing the precondition for use, and lays out two paths: with a wallet for self-payment, or without a wallet for a sponsor URL. It does not explicitly say when to use rent_domain instead, but the context strongly implies this tool is for upgrading an existing trial.
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
rent_domain2 fields changed- changed
Input schema / properties / payerAddress / descriptionPrevious value: -"(phase 1, optional) The 0x wallet you will pay from. Required only when your Sigil has no bound x402 wallet."New value: +"(phase 1) The 0x wallet you will pay from. Required on every challenge; a wallet registered on your Sigil does not substitute for it." - changed
Input schema / properties / payerProof / descriptionPrevious value: -"(phase 1, optional) EIP-191 personal_sign signature proving control of payerAddress. Required with payerAddress when no wallet is sigil-bound."New value: +"(phase 1) EIP-191 personal_sign signature proving control of payerAddress. Always required with payerAddress."
3 tool updates
- Changed
rent_domain1 field changed- added
Output schema / properties / tierProgression / properties / reasonAdded value: +{ + "type": "string" +}
- Changed
try_domain1 field changed- added
Output schema / properties / tierProgression / properties / reasonAdded value: +{ + "type": "string" +}
- Changed
upgrade_trial1 field changed- added
Output schema / properties / tierProgression / properties / reasonAdded value: +{ + "type": "string" +}
3 tool updates
- Changed
rent_domain3 fields changed- changed
Output schema / properties / identityConfidence / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor." - changed
Output schema / properties / sigilEligibility / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Identity standing: lifecycle status, canary screen result, and any hard gates." - changed
Output schema / properties / tierProgression / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Current enforced trust tier and when it is next evaluated. Present only once an identity exists."
- Changed
try_domain3 fields changed- changed
Output schema / properties / identityConfidence / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor." - changed
Output schema / properties / sigilEligibility / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Identity standing: lifecycle status, canary screen result, and any hard gates." - changed
Output schema / properties / tierProgression / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Current enforced trust tier and when it is next evaluated. Present only once an identity exists."
- Changed
upgrade_trial3 fields changed- changed
Output schema / properties / identityConfidence / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"How firmly this identity is bound: unbound, bound to a key, or backed by a verified sponsor." - changed
Output schema / properties / sigilEligibility / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Identity standing: lifecycle status, canary screen result, and any hard gates." - changed
Output schema / properties / tierProgression / descriptionPrevious value: -"Reserved for a future scoring release. Not returned today."New value: +"Current enforced trust tier and when it is next evaluated. Present only once an identity exists."
6 tool updates
- Changed
answer_trial_canary4 fields changed- added
Output schema / properties / canaryVerdictAdded value: +{ + "type": "string" +} - added
Output schema / properties / scorerVersionAdded value: +{ + "type": "string" +} - added
Output schema / properties / trustReceipt / propertiesAdded value: +{ + "canaryVerified": { + "type": "boolean" + }, + "claimable": { + "type": "boolean" + } +} - added
Output schema / properties / upgrade / propertiesAdded value: +{ + "agentPaymentAvailable": { + "type": "boolean" + }, + "availableDurations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "preserveExactUrl": { + "type": "boolean" + } +}
- Changed
get_price_quote2 fields changed- added
Output schema / properties / ownerCommissionAdded value: +{ + "type": "number" +} - added
Output schema / properties / ownerCommissionPercentAdded value: +{ + "type": "number" +}
- Changed
rent_domain7 fields changed- added
Output schema / properties / identityConfidenceAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "level": { + "enum": [ + "unbound", + "key_bound", + "sponsor_verified" + ], + "type": "string" + }, + "sponsorVerified": { + "type": "boolean" + } + }, + "type": "object" +} - added
Output schema / properties / payment / propertiesAdded value: +{ + "amountInSmallestUnit": { + "type": "string" + }, + "chainId": { + "type": "number" + }, + "expiresAt": { + "type": "string" + }, + "memo": { + "type": "string" + }, + "paymentId": { + "type": "string" + }, + "protocol": { + "type": "string" + }, + "recipient": { + "type": "string" + }, + "settleUrl": { + "type": "string" + }, + "status": { + "type": "string" + }, + "tokenAddress": { + "type": "string" + }, + "txHash": { + "type": "string" + } +} - added
Output schema / properties / provisioning / propertiesAdded value: +{ + "message": { + "type": "string" + }, + "pollIntervalSeconds": { + "type": "number" + }, + "statusUrl": { + "type": "string" + }, + "timeoutSeconds": { + "type": "number" + } +} - added
Output schema / properties / rental / propertiesAdded value: +{ + "endTime": { + "type": "string" + }, + "fullUrl": { + "type": "string" + }, + "id": { + "type": "string" + }, + "startTime": { + "type": "string" + }, + "status": { + "type": "string" + }, + "subdomain": { + "type": "string" + } +} - added
Output schema / properties / settleUrlAdded value: +{ + "type": "string" +} - added
Output schema / properties / sigilEligibilityAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "canaryStatus": { + "type": "string" + }, + "hardGates": { + "items": { + "type": "string" + }, + "type": "array" + }, + "status": { + "enum": [ + "eligible", + "awaiting_key_binding", + "active", + "review_required", + "denied", + "suspended", + "revoked" + ], + "type": "string" + } + }, + "type": "object" +} - added
Output schema / properties / tierProgressionAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "currentTier": { + "enum": [ + "nascent", + "fledgling", + "established", + "trusted", + "sovereign" + ], + "type": "string" + }, + "evidenceConfidence": { + "type": "number" + }, + "nextEvaluationAt": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" +}
- Changed
search_domains1 field changed- added
Output schema / properties / pagination / propertiesAdded value: +{ + "limit": { + "type": "number" + }, + "page": { + "type": "number" + }, + "total": { + "type": "number" + }, + "totalPages": { + "type": "number" + } +}
- Changed
try_domain9 fields changed- added
Output schema / properties / canaryVerdictAdded value: +{ + "type": "string" +} - added
Output schema / properties / identityConfidenceAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "level": { + "enum": [ + "unbound", + "key_bound", + "sponsor_verified" + ], + "type": "string" + }, + "sponsorVerified": { + "type": "boolean" + } + }, + "type": "object" +} - added
Output schema / properties / questions / items / propertiesAdded value: +{ + "prompt": { + "type": "string" + }, + "question_id": { + "type": "string" + } +} - added
Output schema / properties / questions / items / requiredAdded value: +[ + "question_id", + "prompt" +] - added
Output schema / properties / scorerVersionAdded value: +{ + "type": "string" +} - added
Output schema / properties / sigilEligibilityAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "canaryStatus": { + "type": "string" + }, + "hardGates": { + "items": { + "type": "string" + }, + "type": "array" + }, + "status": { + "enum": [ + "eligible", + "awaiting_key_binding", + "active", + "review_required", + "denied", + "suspended", + "revoked" + ], + "type": "string" + } + }, + "type": "object" +} - added
Output schema / properties / tierProgressionAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "currentTier": { + "enum": [ + "nascent", + "fledgling", + "established", + "trusted", + "sovereign" + ], + "type": "string" + }, + "evidenceConfidence": { + "type": "number" + }, + "nextEvaluationAt": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" +} - added
Output schema / properties / trustReceipt / propertiesAdded value: +{ + "canaryVerified": { + "type": "boolean" + }, + "claimable": { + "type": "boolean" + } +} - added
Output schema / properties / upgrade / propertiesAdded value: +{ + "agentPaymentAvailable": { + "type": "boolean" + }, + "availableDurations": { + "items": { + "type": "string" + }, + "type": "array" + }, + "preserveExactUrl": { + "type": "boolean" + } +}
- Changed
upgrade_trial6 fields changed- added
Output schema / properties / identityConfidenceAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "level": { + "enum": [ + "unbound", + "key_bound", + "sponsor_verified" + ], + "type": "string" + }, + "sponsorVerified": { + "type": "boolean" + } + }, + "type": "object" +} - added
Output schema / properties / sigil / propertiesAdded value: +{ + "agentName": { + "type": "string" + }, + "mandateId": { + "type": "string" + }, + "publicKey": { + "type": "string" + }, + "sigilId": { + "type": "string" + } +} - added
Output schema / properties / sigil / requiredAdded value: +[ + "sigilId", + "publicKey", + "mandateId" +] - added
Output schema / properties / sigilEligibilityAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "canaryStatus": { + "type": "string" + }, + "hardGates": { + "items": { + "type": "string" + }, + "type": "array" + }, + "status": { + "enum": [ + "eligible", + "awaiting_key_binding", + "active", + "review_required", + "denied", + "suspended", + "revoked" + ], + "type": "string" + } + }, + "type": "object" +} - added
Output schema / properties / tierProgressionAdded value: +{ + "description": "Reserved for a future scoring release. Not returned today.", + "properties": { + "currentTier": { + "enum": [ + "nascent", + "fledgling", + "established", + "trusted", + "sovereign" + ], + "type": "string" + }, + "evidenceConfidence": { + "type": "number" + }, + "nextEvaluationAt": { + "type": "string" + }, + "status": { + "type": "string" + } + }, + "type": "object" +} - added
Output schema / properties / upgrade / propertiesAdded value: +{ + "duration": { + "type": "string" + }, + "fqdn": { + "type": "string" + }, + "note": { + "type": "string" + }, + "payment": { + "properties": { + "amountInSmallestUnit": { + "type": "string" + }, + "chainId": { + "type": "number" + }, + "expiresAt": { + "type": "string" + }, + "memo": { + "type": "string" + }, + "paymentId": { + "type": "string" + }, + "protocol": { + "type": "string" + }, + "recipient": { + "type": "string" + }, + "settleUrl": { + "type": "string" + }, + "status": { + "type": "string" + }, + "tokenAddress": { + "type": "string" + }, + "txHash": { + "type": "string" + } + }, + "type": "object" + }, + "preserveExactUrl": { + "type": "boolean" + } +}
1 tool update
- Changed
upgrade_trial1 field changed- changed
Input schema / properties / duration / descriptionPrevious value: -"Optional rental length: an ISO 8601 duration (PT1H, PT4H, P1D, P7D, P30D) or hourly/daily/weekly/monthly. Defaults to P1D."New value: +"Optional rental length: an ISO 8601 duration (PT1H, PT4H, P1D, P7D, P30D) or hourly/daily/weekly/monthly. Defaults to PT1H (1 hour)."
4 tool updates
- Added
answer_trial_canary - Changed
rent_domain18 fields changed- added
Input schema / properties / fromAddressAdded value: +{ + "description": "(phase 2) The wallet you paid from (must match the challenge's bound payer).", + "type": "string" +} - added
Input schema / properties / payerAddressAdded value: +{ + "description": "(phase 1, optional) The 0x wallet you will pay from. Required only when your Sigil has no bound x402 wallet.", + "type": "string" +} - added
Input schema / properties / payerProofAdded value: +{ + "description": "(phase 1, optional) EIP-191 personal_sign signature proving control of payerAddress. Required with payerAddress when no wallet is sigil-bound.", + "type": "string" +} - added
Input schema / properties / payerProofIssuedAtAdded value: +{ + "description": "(phase 1, optional) ISO 8601 timestamp of the payerProof, within 5 minutes of the request.", + "type": "string" +} - added
Input schema / properties / paymentIdAdded value: +{ + "description": "(phase 2) The paymentId returned by the phase-1 challenge.", + "type": "string" +} - added
Input schema / properties / txHashAdded value: +{ + "description": "(phase 2) The on-chain transaction hash of your USDC payment on Base.", + "type": "string" +} - added
Output schema / properties / credentialAdded value: +{ + "type": "string" +} - removed
Output schema / properties / documentationRemoved value: -{ - "type": "string" -} - removed
Output schema / properties / estimatedPriceRemoved value: -{ - "type": "object" -} - removed
Output schema / properties / messageRemoved value: -{ - "type": "string" -} - added
Output schema / properties / nextAdded value: +{ + "type": "string" +} - added
Output schema / properties / paymentAdded value: +{ + "type": "object" +} - added
Output schema / properties / provisioningAdded value: +{ + "type": "object" +} - added
Output schema / properties / reasonAdded value: +{ + "type": "string" +} - added
Output schema / properties / rentalAdded value: +{ + "type": "object" +} - added
Output schema / properties / rentalIdAdded value: +{ + "type": "string" +} - removed
Output schema / properties / stepsRemoved value: -{ - "items": { - "type": "object" - }, - "type": "array" -} - removed
Output schema / requiredRemoved value: -[ - "status", - "steps" -]
- Changed
try_domain30 fields changed- added
Input schema / properties / analyticsConsentAdded value: +{ + "description": "Record operator consent to trial analytics for this address.", + "type": "boolean" +} - added
Input schema / properties / autoSelectAdded value: +{ + "description": "Let Popdot AI pick an available subdomain from your goal when you do not provide preferredSubdomain.", + "type": "boolean" +} - added
Input schema / properties / desiredEmotionAdded value: +{ + "description": "Preferred vibe of the parent domain: comedy, absurd, playful, edgy, wholesome, professional, trustworthy. Unknown values are ignored.", + "enum": [ + "comedy", + "absurd", + "playful", + "edgy", + "wholesome", + "professional", + "trustworthy" + ], + "type": "string" +} - changed
Input schema / properties / email / descriptionPrevious value: -"An email to associate with your trial API key. Used to issue the key in step 1. If you don't have one, your operator's email works."New value: +"Optional email to associate with the trial. Never returned." - added
Input schema / properties / goalAdded value: +{ + "description": "What you built and want to put online, in a sentence (used to name and describe the address).", + "type": "string" +} - added
Input schema / properties / inputResponsesAdded value: +{ + "description": "(retry only) Your answers to the safety questions, one { id, response } per requested input.", + "items": { + "type": "object" + }, + "type": "array" +} - added
Input schema / properties / preferredSubdomainAdded value: +{ + "description": "The subdomain label you want (e.g. 'mydemo'). Omit and set autoSelect:true to have one picked for you.", + "type": "string" +} - added
Input schema / properties / targetAdded value: +{ + "description": "An https URL to point the address at. Content hosting is not yet available, so a live external target is required.", + "type": "string" +} - added
Input schema / properties / trialHandleAdded value: +{ + "description": "(retry only) The trialHandle returned by the first call. Echo it back with your answers.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[]New value: +[ + "goal" +] - removed
Output schema / properties / authRemoved value: -{ - "type": "string" -} - added
Output schema / properties / candidateIdAdded value: +{ + "type": "string" +} - added
Output schema / properties / claimTokenAdded value: +{ + "type": "string" +} - added
Output schema / properties / claimTokenExpiresAtAdded value: +{ + "type": "string" +} - removed
Output schema / properties / documentationRemoved value: -{ - "type": "string" -} - added
Output schema / properties / domainAdded value: +{ + "type": "string" +} - added
Output schema / properties / expiresAtAdded value: +{ + "type": "string" +} - removed
Output schema / properties / messageRemoved value: -{ - "type": "string" -} - added
Output schema / properties / nextAdded value: +{ + "type": "string" +} - added
Output schema / properties / questionsAdded value: +{ + "items": { + "type": "object" + }, + "type": "array" +} - added
Output schema / properties / shareMessageAdded value: +{ + "type": "string" +} - removed
Output schema / properties / statusRemoved value: -{ - "type": "string" -} - removed
Output schema / properties / stepsRemoved value: -{ - "items": { - "type": "object" - }, - "type": "array" -} - added
Output schema / properties / subdomainAdded value: +{ + "type": "string" +} - added
Output schema / properties / trialHandleAdded value: +{ + "type": "string" +} - added
Output schema / properties / trialIdAdded value: +{ + "type": "string" +} - added
Output schema / properties / trustReceiptAdded value: +{ + "type": "object" +} - added
Output schema / properties / upgradeAdded value: +{ + "type": "object" +} - added
Output schema / properties / urlAdded value: +{ + "type": "string" +} - removed
Output schema / requiredRemoved value: -[ - "status", - "steps" -]
- Added
upgrade_trial
5 tool updates
- Changed
check_availability1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "available": { + "type": "boolean" + }, + "domainId": { + "type": "string" + }, + "fullDomain": { + "type": "string" + }, + "fullUrl": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "subdomain": { + "type": "string" + } + }, + "required": [ + "domainId", + "subdomain", + "available" + ], + "type": "object" +}
- Changed
get_price_quote1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "available": { + "type": "boolean" + }, + "currency": { + "type": "string" + }, + "domainId": { + "type": "string" + }, + "duration": { + "type": "string" + }, + "durationLabel": { + "type": "string" + }, + "feeNote": { + "type": "string" + }, + "fullDomain": { + "type": "string" + }, + "hours": { + "type": "number" + }, + "ownerPayout": { + "type": "number" + }, + "priceBreakdown": { + "properties": { + "daily": { + "type": "number" + }, + "hourly": { + "type": "number" + }, + "monthly": { + "type": "number" + }, + "weekly": { + "type": "number" + } + }, + "type": "object" + }, + "priceSource": { + "enum": [ + "owner", + "algorithm" + ], + "type": "string" + }, + "rentalPrice": { + "type": "number" + }, + "serviceFee": { + "type": "number" + }, + "tier": { + "type": "string" + }, + "tierScore": { + "type": "number" + }, + "totalCost": { + "type": "number" + } + }, + "required": [ + "domainId", + "totalCost", + "currency" + ], + "type": "object" +}
- Changed
rent_domain1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "documentation": { + "type": "string" + }, + "estimatedPrice": { + "type": "object" + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + }, + "steps": { + "items": { + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "status", + "steps" + ], + "type": "object" +}
- Changed
search_domains1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "domains": { + "items": { + "properties": { + "emotionTags": { + "items": { + "type": "string" + }, + "type": "array" + }, + "fullDomain": { + "type": "string" + }, + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "pricing": { + "properties": { + "currency": { + "type": "string" + }, + "daily": { + "type": "number" + }, + "hourly": { + "type": "number" + }, + "monthly": { + "type": "number" + }, + "weekly": { + "type": "number" + } + }, + "type": "object" + }, + "tier": { + "type": "string" + }, + "tierScore": { + "type": "number" + }, + "tld": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + "pagination": { + "type": "object" + } + }, + "required": [ + "domains" + ], + "type": "object" +}
- Changed
try_domain1 field changed- changed
Output schema / (root)Previous value: -nullNew value: +{ + "properties": { + "auth": { + "type": "string" + }, + "documentation": { + "type": "string" + }, + "message": { + "type": "string" + }, + "status": { + "type": "string" + }, + "steps": { + "items": { + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "status", + "steps" + ], + "type": "object" +}
1 tool update
- Changed
search_domains1 field changed- added
Input schema / properties / emotionAdded value: +{ + "description": "Filter by the reaction the domain is built to elicit: comedy, absurd, playful, edgy, wholesome, professional, trustworthy. Unknown values are ignored.", + "enum": [ + "comedy", + "absurd", + "playful", + "edgy", + "wholesome", + "professional", + "trustworthy" + ], + "type": "string" +}
5 tool updates
- First observed
check_availability - First observed
get_price_quote - First observed
rent_domain - First observed
search_domains - First observed
try_domain
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-call tools for autonomous agents, settled in USDC on Base via x402.
16172 x402 endpoints: trading, AI inference, blockchain, escrow. USDC on Base+Solana.
Market data and web intelligence for AI agents, paid per call in USDC on Base via x402.
Internet identity for AI agents: register or broker domains, email, DNS - pay by card or USDC.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables publishers to sell always-on replication of buyer-supplied Hypercore/Hyperdrive keys on Base, with payments in USDC via x402 and lease-based access control.-
- AlicenseNot gradedqualityCmaintenanceThe open marketplace for the agent economy — Buy any of 24,000+ live x402 services with USDC on Base.6MIT
- AlicenseAqualityDmaintenancePay-per-call x402 data products on Base mainnet — sanctions screening, aviation weather, mortgage rates, US property dossier, title chain, wallet balance, and agent session auth. Every call settles in USDC with an on-chain receipt, no accounts or API keys.798MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI clients to perform domain verification, DNS lookup, and domain assessment via the Revnuvo x402 paid APIs, with automatic USDC micropayments on Base.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The tools cover distinct phases of the domain rental workflow: searching, checking availability, quoting, renting, and trial management. However, search_domains and check_availability overlap slightly (both deal with availability), and answer_trial_canary is a step within the trial flow that could be confused with try_domain. Descriptions help clarify, but there's minor ambiguity.
All tool names use consistent snake_case with a verb_noun pattern (check_availability, get_price_quote, rent_domain, search_domains, try_domain, upgrade_trial, answer_trial_canary). The pattern is uniform and predictable.
7 tools is well-scoped for a domain rental service covering discovery, pricing, acquisition, and trial conversion. Each tool serves a clear purpose without redundancy.
The set covers the entire acquisition lifecycle from search to paid rental, including a trial path. However, there's no tool for managing existing rentals (e.g., listing own domains, extending, or canceling), which is a notable gap for a rental service.