Evercraft Website Launch
Server Details
Done-for-you business website services with human-confirmed checkout.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 3 tools
Each tool targets a distinct resource and action: reading service offers, checking order status/payment, and preparing checkout. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern using snake_case. 'get' is used for read operations and 'prepare' for the action, making the naming predictable and clear.
With 3 tools, the set is compact but covers the core launch workflow. It is within the typical 3–15 range, though slightly on the lean side for a full commerce flow.
The tools cover reading offers, preparing checkout, and verifying payment status, which forms a usable purchase loop. Minor gaps like order cancellation or an explicit order creation step are workable around.
Available Tools
3 toolsget_website_service_offersGet Evercraft website service offersARead-onlyIdempotentInspect
Read current fixed website-service tiers and prices. Creates no charge.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description does not need to restate them. It adds a valuable domain-specific guarantee ('Creates no charge') that goes beyond the annotations and reassures agents about side effects.
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 short sentences with no filler. The core behavior is stated first, and the side-effect clarification is a meaningful second sentence that earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only tool with full annotation coverage, the description is nearly complete. It tells the agent what is returned (tiers and prices) and that no charge occurs, though it does not describe the response format, which is minor given the simple 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?
The tool has zero parameters, so there is no schema-description gap to compensate for. The description's mention of what is being read ('tiers and prices') gives useful context even though there is nothing to document about parameter usage.
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 uses a specific verb ('Read'), names the resource ('fixed website-service tiers and prices'), and clearly distinguishes this from the sibling tools, which handle order status and checkout. Even without the title, an agent would correctly infer the tool's purpose.
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 clearly establishes that this tool is for reading current offers, and the sibling names imply the alternatives are for order status and checkout. However, it does not explicitly say when not to use it or name a specific alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_website_service_order_statusGet Evercraft website service order statusARead-onlyIdempotentInspect
Read order state and independently verify Stripe payment when a checkout session exists.
| Name | Required | Description | Default |
|---|---|---|---|
| order_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is known. The description adds useful behavior: it independently verifies Stripe payment, but only when a checkout session exists. This conditional behavior is not captured by the annotations and gives the agent a clearer picture of what the tool does beyond simply reading state.
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, efficient sentence that front-loads the primary action (read order state) and adds the secondary verification behavior. There is no redundant wording or 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 one-parameter, read-only tool with annotations covering safety, the description is mostly complete. It conveys the core behavior and conditional verification. However, since there is no output schema, the description does not mention what the tool returns (e.g., order status fields, payment verification boolean) or how errors are handled. This is a minor gap for a tool this simple.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no description for order_id (0% coverage), and the description does not explain what order_id is, its format, or any domain meaning. While the tool name and description suggest it identifies a service order, the agent is left to infer that. The description should have explicitly connected order_id to the order being read.
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 a specific action (read order state) and a specific resource (website service order), plus an additional capability (independently verify Stripe payment). It distinguishes itself from sibling tools (get_website_service_offers and prepare_website_service_checkout) by focusing on order status and payment verification, not offers or checkout creation.
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 checking order status and verifying payment, but it does not explicitly state when to use this tool versus the sibling alternatives. No conditions, prerequisites, or exclusions are given, leaving the agent to infer the appropriate context from the sibling names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
prepare_website_service_checkoutPrepare a human-confirmed Evercraft website service checkoutAInspect
After the human explicitly agrees to pay for a selected website service, prepare the secure checkout. Checkout creation is not payment proof.
| Name | Required | Description | Default |
|---|---|---|---|
| service_plan | Yes | ||
| business_name | Yes | ||
| customer_name | Yes | ||
| project_brief | Yes | ||
| customer_email | Yes | ||
| customer_phone | No | ||
| current_website | No | ||
| user_confirmed_payment | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint=false, idempotentHint=false), the description adds a valuable behavioral trait: 'Checkout creation is not payment proof,' which corrects a likely assumption that preparing checkout equals receiving payment. It also emphasizes the human-confirmation prerequisite. It doesn't discuss idempotency or side-effect details, but the added caveat is meaningful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler: the first front-loads the action and precondition, the second adds a crucial caveat. Every clause earns its place, and the structure supports quick scanning.
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?
Covers the key precondition and the non-payment caveat, which are core to correct usage. But with no output schema and a short description, the agent has no idea what the tool returns (e.g., checkout URL, ID) or what happens after checkout creation. This is a clear gap for a tool that creates a resource.
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%, and the description mentions none of the 8 parameters. The description does not compensate for the schema's silence, leaving the agent to infer semantics purely from parameter names like user_confirmed_payment and service_plan. Some names are self-explanatory, but the description itself adds no parameter-level meaning.
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 and resource ('prepare the secure checkout'), names the triggering precondition ('human explicitly agrees to pay'), and adds a differentiating caveat ('checkout creation is not payment proof'). The sibling tools are get_* operations on offers and order status, so this action-oriented prepare tool is clearly distinct without needing to open the schema.
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 an explicit trigger condition ('After the human explicitly agrees to pay for a selected website service'), which tells the agent exactly when to call. However, it does not name sibling tools or state when-not-to-use, so it captures the 'clear context' level but not the full 'explicit when/when-not/alternatives' level.
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.
3 tool updates
- First observed
get_website_service_offers - First observed
get_website_service_order_status - First observed
prepare_website_service_checkout
Related MCP Connectors
- LanlanOAuthsite.lanlan
Build a hosted website by chatting. Snapshots, forms, analytics. Hand off the dashboard. Walk away.
Free preview websites for local trades, then Stripe Checkout for $29/mo hosting.
Launch and operate a SaaS from one conversation — domain, hosting, email, Stripe, ads, security.
Build, edit, and publish real websites and online stores by chatting with your AI assistant.
Related MCP Servers
AlicenseAqualityAmaintenanceYour agent takes a business live on payments: go_live creates a real merchant account (sandbox + production) the same day; create_checkout returns a payable link. Payments for AI builders, 3.9% flat.340 npmMIT- AlicenseAqualityDmaintenanceEnables building, revising, and deploying AI-generated websites for local service businesses via the Warpweb API, with support for domain management and form webhooks.1022 npm1MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to create and manage owned-audience websites with posts, products, subscribers, domains, and analytics.67 npmMIT

PromptSwingofficial
AlicenseNot gradedqualityCmaintenanceEnables an AI assistant to publish a storefront it built to live hosting, read the live site back, add, update or delete a single page, manage the catalogue, orders and reviews, and restore any earlier version in one call. Hosting requires a paid subscription, and a free pre-publish assessment reports which documented signal calls, contrast pairs or hardcoded prices would fail.28 npmApache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.