FlipDomain Domain Sales
Server Details
Search 2,972 premium domains for sale, inspect current asking prices and buyer paths, and submit purchase offers directly to the seller.
- Status
- Unhealthy
- 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 3 of 3 tools scored. Lowest: 2.8/5.
Each tool serves a distinct purpose: retrieving domain details, submitting an offer, and searching the portfolio. There is no overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case (get_domain, make_offer, search_domains), making them predictable and easy to distinguish.
Three tools is on the smaller side but appropriate for a focused domain sales service. The set covers search, details, and offers without excessive bloat.
The core buyer workflow (search, view price, make offer) is covered. Missing features like offer status tracking or seller response handling are minor gaps.
Available Tools
3 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?
No annotations provided, so description carries full burden. It indicates a read operation ('Get') and specifies the data retrieved. However, it lacks details on error handling, authentication, rate limits, or what happens if the domain is not found. Basic disclosure is adequate for a simple query.
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, 15 words, front-loaded with the action. No unnecessary words, concise and to the point.
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?
Tool has 1 parameter and no output schema. Description covers the essential purpose (retrieving price and buyer paths) but doesn't mention what buyer paths are or potential output details. For a simple read tool, it is mostly complete, though edge cases are not addressed.
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 description must add meaning. It describes the parameter as 'exact domain', which implies it should be a precise string, but does not specify format (e.g., with or without www, TLD). This adds some context but insufficiently compensates for missing schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb 'get', resource 'domain', and the specific information retrieved ('asking price and buyer paths'). It specifies 'exact domain in the live sale catalog', distinguishing it from sibling 'search_domains' which is for broader search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states it is for an 'exact domain' in the 'live sale catalog', implying it should be used when you have a precise domain name. While it doesn't explicitly exclude other scenarios or mention alternatives, the context is clear enough for an AI agent.
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?
No annotations are provided, so the description fully carries the burden. It states that 'The seller receives it through the live offer pipeline', which hints at the outcome, but it does not disclose behavioral traits such as idempotency, rate limits, permissions required, or whether the domain is checked for saleability before submission.
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 consists of two concise sentences (14 words) that are front-loaded with the core action. No extraneous information, making it easy 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 4 parameters, no output schema, and low schema coverage, the description is too minimal. It does not specify return values, success/failure conditions, or domain pre-validation. An agent lacks sufficient context to safely invoke this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 25% (only 'contact' has a description). The tool description adds minimal parameter context: it mentions 'genuine USD offer' but does not explain the meaning of 'domain', 'message', or 'price_usd' beyond what the schema trivially provides (type/constraints).
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'), the resource ('a genuine USD offer'), and the target ('for a saleable domain'). It is specific and distinguishes from sibling tools like 'get_domain' and 'search_domains' which focus on retrieval and listing.
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 that this tool is used to submit an offer for a saleable domain, but it does not explicitly state when to use it versus alternatives, nor does it mention prerequisites or conditions like domain availability or user authorization.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_domainsCInspect
Search the live FlipDomain.ai portfolio by keyword, category, TLD, 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 | ||
| max_price_usd | No | ||
| min_price_usd | 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 reveals one behavioral trait: 'Returns saleable domains only', implying a filter. However, it lacks disclosure about auth requirements, rate limits, pagination, or what happens when no results are found. The term 'live' is vague.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose and filters. No unnecessary words. Every part 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 6 parameters, no output schema, and no annotations, the description is incomplete. It does not explain that all parameters are optional, the default and max limit, or the structure of returned data. A more complete description would cover these aspects.
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 low (33%). The description mentions query, category, TLD, and price but does not explain each parameter's semantics beyond their names. For example, 'max_price_usd' and 'min_price_usd' are not described. The 'limit' parameter is absent. The description partially compensates but insufficiently.
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 'FlipDomain.ai portfolio', listing filters: keyword, category, TLD, price. It also mentions returning 'saleable domains only', which clarifies scope. However, it does not explicitly differentiate from sibling tools like 'get_domain' or 'make_offer'.
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 lacks guidance on when to use this tool versus alternatives. It does not provide context about prerequisites, limitations, or when not to use it. For example, it does not specify that 'get_domain' is for individual domain details.
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!