FlipDomain Domain Sales
Server Details
Search 2,972 premium domains by keyword, category, TLD, and budget, then submit offers.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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 3.4/5 across 4 of 4 tools scored.
Each tool serves a distinct purpose: get_domain retrieves details for a specific domain, list_clearance_domains filters clearance inventory, make_offer submits offers, and search_domains explores the portfolio. No overlap or ambiguity.
All tools follow a consistent verb_noun snake_case pattern (e.g., get_domain, search_domains). The verbs 'get', 'list', 'make', 'search' are varied but appropriately descriptive and consistently formatted.
With 4 tools, the server is well-scoped for domain sales. It covers the core operations: search, inspect, get clearance deals, and make offers. No unnecessary tools and no obvious missing essentials.
The tool set covers key buyer actions: searching, viewing specific domain details, browsing clearance deals, and submitting offers. A minor gap is the lack of offer status tracking, but the core workflow is not broken.
Available Tools
4 toolsget_domainAInspect
Get the current asking price and buyer paths for an exact domain in the live sale catalog.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description indicates a read operation ('get') and lists retrieved info, but omits details like authentication needs, rate limits, or response structure.
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?
A single, concise sentence that is well-structured and front-loaded with the key action, but may be slightly too brief for full clarity.
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 one-parameter lookup tool with no output schema, the description is adequate but could add return format or error handling details to improve 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 has 0% description coverage for the 'domain' parameter; description only mentions 'exact domain', lacking format, examples, or constraints for the single required parameter.
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 retrieves 'asking price and buyer paths' for an 'exact domain', distinguishing it from siblings like 'list_clearance_domains' (clearance domains) and 'make_offer' (offer-making).
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 explicit guidance on when to use this tool vs alternatives. The description implies use for exact domain queries, but lacks exclusions or comparisons to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_clearance_domainsBInspect
List time-sensitive renewal-clearance domains by maximum price, category, or TLD.
| Name | Required | Description | Default |
|---|---|---|---|
| tld | No | ||
| limit | No | ||
| category | No | ||
| max_price_usd | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must disclose behavior. It states 'List' (read-only) but omits details like pagination, rate limits, or what happens with no filters. The limit parameter is present in the schema but not mentioned in the description.
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 no wasted words. It front-loads the main action and filters efficiently.
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 (list with filters), the description covers the core purpose but is incomplete for an agent to understand return format, default behavior (e.g., lists all if no filters), or whether results are paginated. No output schema compounds the 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 0%, so the description must compensate. It mentions three params (max_price, category, tld) but not 'limit', and provides no explanation of 'renewal-clearance' domain concept. This is insufficient for an agent to accurately use all parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists 'time-sensitive renewal-clearance domains' with filters by price, category, or TLD. The verb 'List' and specific resource distinguish it from siblings like 'get_domain' (single) and 'search_domains' (broader).
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 for listing clearance domains with optional filters but does not explicitly state when to use this tool over alternatives (e.g., search_domains) or any exclusions (e.g., not for expired domains).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
make_offerBInspect
Submit a genuine USD offer for a saleable domain. The seller receives it through the live offer pipeline.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| contact | Yes | Buyer email or other reply address. | |
| message | No | ||
| price_usd | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears the full burden of behavioral disclosure. It indicates a write operation ('submit') and mentions the 'live offer pipeline,' but fails to disclose whether the offer is binding, cancellable, or requires authentication. The agent is left uninformed about important behavioral traits for a mutation 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 a single, front-loaded sentence of 14 words. It conveys the core action efficiently with no waste. Every word 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?
Despite low complexity (4 params, no enums, no nested objects, no output schema), the description omits important context such as return behavior, confirmation of submission, side effects, or any follow-up. The tool would benefit from additional detail on what happens after an offer is submitted.
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 low (25%; only 'contact' has a description). The description adds no parameter details beyond the schema—it mentions 'USD offer' (linking to price_usd) and 'saleable domain' (linking to domain), but does not explain domain format, message constraints, or price_usd meaning. This insufficiently compensates for the schema gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('submit') and the resource ('a genuine USD offer for a saleable domain'), and distinguishes the tool from read-only sibling tools like get_domain, list_clearance_domains, and search_domains.
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 when to use the tool (to make an offer on a saleable domain) but provides no explicit guidance on when not to use it, nor does it mention alternative tools. While siblings are clearly read-oriented, the description lacks explicit usage context for an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_domainsBInspect
Search the live FlipDomain.ai portfolio by keyword, category, TLD, collection, and price. Returns saleable domains only.
| Name | Required | Description | Default |
|---|---|---|---|
| tld | No | TLD such as .com, .ai, or io. | |
| limit | No | ||
| query | No | Words or fragments to match in the domain or category. | |
| category | No | ||
| collection | No | ||
| max_price_usd | No | ||
| min_price_usd | No | ||
| clearance_only | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It adds one behavioral detail ('Returns saleable domains only') but omits critical traits such as authentication requirements, rate limits, pagination behavior, or whether results are sorted. This leaves an agent guessing about practical usage constraints.
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 superfluous words. It front-loads the core purpose and key filters. However, it could benefit from a more structured format (e.g., bullet points for parameters) to aid parsing without increasing length.
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 8 parameters (none required) and no output schema, the tool is moderately complex. The description fails to explain the return format (e.g., list of domain objects, pagination info) or common usage patterns (e.g., combining filters, default ordering). An agent would need to infer behavior from the tool name and siblings.
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% (only query and tld have descriptions). The description lists filter categories (keyword, category, TLD, collection, price) but does not explain each parameter's format, allowed values (e.g., enum for collection, ranges for price), or combined effects. This forces heavy reliance on the schema, which itself is sparse.
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 'Search the live FlipDomain.ai portfolio by keyword, category, TLD, collection, and price. Returns saleable domains only.' This specifies the verb (search), resource (live FlipDomain.ai portfolio), and key filters, distinguishing it from siblings like get_domain (single domain lookup) and list_clearance_domains (specific subset).
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 when to use: when needing to search for domains across multiple dimensions. However, it does not explicitly exclude scenarios (e.g., if you need a single domain's details, use get_domain; for clearance offerings, use list_clearance_domains). Sibling tools are not mentioned, leaving room for ambiguity.
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-qualityDmaintenanceSearch, register, and manage domain names through natural conversation with AI assistants.2MIT
- FlicenseAqualityDmaintenanceEnables domain name availability checking through DNS and WHOIS lookups with confidence scoring. It supports searching across alternative TLDs and generating domain name variations for branding purposes.4
- Alicense-qualityDmaintenanceEnables AI assistants to check domain availability across multiple TLDs with real-time pricing, brainstorm creative domain names, analyze domains for brandability and SEO potential, and search for domains by price and category without CAPTCHAs.153MIT
- Alicense-qualityCmaintenanceEnables checking domain availability and registration prices across multiple TLDs and providers. Users can find available domain names and compare pricing through natural language.109MIT