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
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: checking availability, getting a price quote, renting, searching, and trying a domain. No overlap.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., check_availability, get_price_quote).
Five tools cover the core workflow (search, check, price, rent, trial) without being too few or excessive.
The set covers discovery, pricing, renting, and trial provisioning, but lacks post-rental management (e.g., renewal, listing active rentals).
Available Tools
5 toolscheck_availabilityAInspect
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) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description fully discloses the tool's behavior: it checks availability and returns a boolean. No side effects are mentioned, which is appropriate for a read-only check. With no annotations, the description carries the burden and does so well.
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 purpose and return value, followed by a helpful but slightly longer tip. It is concise overall, with no redundant sentences.
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 boolean check with two parameters and no output schema, the description covers the essential aspects. It could mention error cases (e.g., invalid domainId) but the schema descriptions mitigate that. Complete enough given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters have schema descriptions (100% coverage). The description adds value beyond the schema with a naming tip, enhancing understanding of the subdomain value, though it does not alter the core semantics.
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 ('Check') and the resource ('subdomain on a domain'), and specifies the return value (true if available). It distinguishes from siblings like search_domains (broader search) and rent_domain (post-check action).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage before renting by stating 'Returns true if the subdomain can be rented.' It does not explicitly exclude alternatives or mention when-not-to-use, but the context and sibling names make the intended use clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_price_quoteAInspect
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) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It indicates a read operation ('Get'), but does not explicitly state it is non-destructive, idempotent, or safe to call repeatedly. However, the action is inherently query-like and the description is sufficient for an agent to infer safety.
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 clear sentences with no redundant information. It efficiently conveys the purpose and output, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, no output schema), the description covers the key aspects: purpose, duration spec, and return content (cost, tier info, breakdown). It is adequately complete for a price quote tool, though more detail on 'tier info' could be beneficial.
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% with descriptions for both parameters. The tool description adds minimal extra meaning beyond the schema (e.g., 'specific domain', 'given duration'). Baseline 3 is appropriate as description does not significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets a price quote for renting a domain with duration, and mentions return values (cost, tier info, pricing breakdown). This distinguishes it from siblings like check_availability, rent_domain, search_domains, and try_domain, which cover availability, renting, searching, and testing respectively.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (get a price quote before renting), but does not explicitly state when to use versus alternatives like check_availability or rent_domain. No exclusion criteria or prerequisites are mentioned.
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. Validates the request, then returns the exact HTTP 402 challenge/settle REST sequence to complete the paid rental (payment happens on-chain between the two calls, so it runs over REST). 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 |
|---|---|---|---|
| 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) | |
| subdomain | Yes | The subdomain label to rent (e.g., 'myproject' for myproject.example.com) | |
| intentMandateId | Yes | The ID of the active Intent Mandate authorizing this purchase |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses authentication requirement, the two-step REST flow, and that payment happens on-chain. Could mention error cases or post-payment state but is sufficiently transparent for an AI agent.
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?
Description is informative with multiple sentences, but each sentence adds value. Front-loaded with main purpose. Could be slightly more concise but not overly verbose.
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 complexity of on-chain payment and no output schema, description explains the HTTP 402 sequence and return values (USDC amount, recipient). Adequate for an agent to understand the flow and expected response.
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 covers 100% of parameters with descriptions. Description adds examples and clarifies the duration enum values, the role of intentMandateId, and the meaning of subdomain. Adds value beyond schema rephrasing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the verb 'rent' and specific resource 'subdomain', with explicit details on payment method (USDC on Base x402). Distinguishes from sibling tools like check_availability, get_price_quote, search_domains, try_domain which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides context about per-transaction payment and the x402 challenge/settle sequence. Implicitly suggests use after checking availability and price, but does not explicitly state when not to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_domainsAInspect
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 | |
| maxPrice | No | Maximum daily price in USD | |
| minPrice | No | Minimum daily price in USD |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It mentions 'No auth required' and that it returns domains with pricing, tier, and availability. However, it does not mention rate limits, pagination, ordering, or error handling, which would improve transparency for a search tool.
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 with no wasted words. It covers purpose, usage, return info, and authentication status efficiently. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with no output schema and four optional parameters, the description covers key aspects: purpose, usage context, return content, and authentication. It could mention default limit and result handling, but overall it is adequate.
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% description coverage, so the baseline is 3. The description does not add specific parameter details beyond what the schema provides; it only generally states what is returned. Thus, no extra value beyond 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?
The description clearly states the verb 'Search' and the resource 'domains available for rent on Popdot AI.' It also distinguishes from sibling tools by specifying use cases for when a web address is needed (verifiable identity, temporary deployment, persistent presence).
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 when to use this tool ('when an agent needs a web address') and describes what it returns. While it does not explicitly list alternatives, the context of sibling tools (check_availability, get_price_quote, rent_domain) provides implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
try_domainAInspect
Get a trial API key. Entry point for new agents: no payment, no human signup. Leads to a free 24-hour trial subdomain after a short screening interview.
Provision a free 24-hour trial subdomain. Two-phase: initiate, answer the screening questions, complete. Returns a live HTTPS URL you control for 24 hours.
Call this with your email and you'll get back the exact step-by-step REST sequence to claim a live trial subdomain (the screening interview is interactive, so it runs over REST). Use it when you need a temporary web address, want to test a deployment with a real URL, or want to show your operator a live demo before a paid rental. One trial per agent. Expires in 24 hours.
| Name | Required | Description | Default |
|---|---|---|---|
| No | 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. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes the interactive screening process, 24-hour expiry, and that it returns a REST sequence. With no annotations, description fully covers behavioral expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with separate paragraphs for overview, process, and usage. Slightly verbose but every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, description comprehensively covers return format (REST sequence, live URL), constraints (24h, one per agent), and process steps.
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?
Single parameter (email) is explained with context for its use and fallback (operator's email). Schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool provisions a free 24-hour trial subdomain via a two-phase process. Distinct from rental/payment siblings like rent_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?
Explicitly marks as entry point for new agents, advises use for temporary URLs or demos, and notes one-per-agent limit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceThe open marketplace for the agent economy — Buy any of 24,000+ live x402 services with USDC on Base.2MIT
- AlicenseAqualityCmaintenancePay-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.795MIT
- Flicense-qualityCmaintenanceEnables AI clients to perform domain verification, DNS lookup, and domain assessment via the Revnuvo x402 paid APIs, with automatic USDC micropayments on Base.

hyperd-mcpofficial
AlicenseAqualityBmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23561MIT