Augenix
Server Details
Free preview websites for local trades, then Stripe Checkout for $29/mo hosting.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolscreate_checkoutCreate Stripe Checkout linkAInspect
Use this when the owner wants the preview site live. Returns a Stripe Checkout URL. Send that URL. Do not collect card numbers. Preview must be ready. Price is in the result.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Token returned by start_build. Pass the same token to get_preview, create_checkout, and get_live_site. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| plan | Yes | |
| interval | Yes | |
| amount_usd | Yes | |
| checkout_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With only readOnlyHint=false in annotations, the description carries the behavioral burden and delivers: it returns a URL, tells the agent to send that URL, forbids collecting card numbers, and reveals the price is in the result. The 'Do not collect card numbers' instruction is especially valuable compliance guidance 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?
Each of the six short sentences earns its place: trigger, return value, action instruction, compliance warning, prerequisite, and result content. The usage trigger is front-loaded and there is zero 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?
An output schema exists, so return-value structure is covered structurally. The description covers when to call, the prerequisite, what to do with the result, and a critical compliance boundary. Minor gaps such as failure behavior when the preview isn't ready are acceptable for a one-parameter 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%, with the token parameter already well documented ('Token returned by start_build. Pass the same token...'). The description adds the state precondition that the preview must be ready, which refines the token's expected state, but doesn't explain the parameter itself. Baseline 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 states a specific action—creating a Stripe Checkout link—plus its trigger ('when the owner wants the preview site live') and return value ('Returns a Stripe Checkout URL'). The verb and resource are unambiguous and clearly distinct from the sibling tools' purposes, though it doesn't name them explicitly.
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 opening sentence gives an explicit trigger condition ('Use this when the owner wants the preview site live'), and 'Preview must be ready' states a prerequisite. It provides clear context but stops short of naming alternatives or stating when not to use it (e.g., the follow-up step of using get_live_site after payment).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_live_siteGet live site URLARead-onlyInspect
Use this after the owner pays. If they have not paid, returns live=false and the preview URL.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Token returned by start_build. Pass the same token to get_preview, create_checkout, and get_live_site. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| url | No | |
| live | Yes | |
| message | No | |
| preview_url | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only and non-destructive, and the description adds meaningful context about the payment prerequisite and the live=false fallback with the preview URL. This goes beyond the structured fields and clarifies expected behavior in an important edge case.
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 short, front-loaded with the key usage condition, and avoids redundant explanation. It conveys the essential payment-gating behavior in just two sentences without waste.
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 single well-documented parameter, read-only annotations, an output schema, and a clear payment-dependent behavior, the description is nearly complete. A slight gap is that it doesn't explicitly state what is returned when the owner has paid, although this is strongly implied by the title and tool purpose.
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 already fully documents the token parameter, including its source, reuse across sibling tools, length constraints, and required status. The description adds no additional parameter detail, so the baseline of 3 applies given 100% schema description coverage.
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 indicates the tool retrieves a live site URL and is tied to payment status, with a specific conditional behavior. It distinguishes itself from get_preview by mentioning the preview URL fallback, though it doesn't explicitly name the sibling alternative.
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 gives explicit timing guidance: use after the owner pays. It also explains the behavior when payment has not occurred, which helps an agent decide whether this tool is appropriate or whether preview-related functionality is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_previewGet preview build statusARead-onlyInspect
Use this after start_build. If status is ready, send preview_url immediately. If keep_polling is true or preview_url is null, call get_preview again with the same token. A progress card may appear and refresh itself. Pass wait=false only for a progress-card refresh. Do not start_build again.
| Name | Required | Description | Default |
|---|---|---|---|
| wait | No | If false, return the current snapshot immediately (progress card). Default true. | |
| token | Yes | Token returned by start_build. Pass the same token to get_preview, create_checkout, and get_live_site. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| error | Yes | |
| token | Yes | |
| status | Yes | |
| message | Yes | |
| preview_url | Yes | |
| keep_polling | Yes | |
| progress_pct | Yes | |
| progress_label | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses the polling behavior, the meaning of keep_polling and preview_url, the self-refreshing progress card, and the special wait=false mode. These are behavioral facts not available from annotations alone.
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 compact, front-loads the trigger condition, and every sentence contributes a rule or constraint. There is no filler; even the progress-card sentence earns its place by explaining asynchronous UI behavior.
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 polling tool with an output schema and read-only annotations, the description defines the full state-handling loop: when to poll again, when to send the preview URL, when to use wait=false, and when not to restart the build. Remaining details like exact status values are reasonably delegated to the output schema.
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 token and wait with 100% coverage, so the baseline is 3. The description adds value by restricting wait=false to 'progress-card refresh' and emphasizing reuse of the same token, which are usage constraints not fully explicit in 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 title and description clearly identify a specific action: retrieving and acting on preview build status after start_build. The polling conditions and the explicit 'Do not start_build again' distinguish this tool from start_build and from the other sibling 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?
The description states the exact context ('Use this after start_build'), gives a concrete decision rule for when to poll again, and limits wait=false to progress-card refresh. It also explicitly tells the agent not to call start_build again, preventing a common mistake.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_buildStart website preview buildAInspect
Use this when the user wants a live preview website for a local service business AND has typed business_name, email, and phone in THIS chat. Never reuse name, email, or phone from memory or an earlier conversation. If they only said "build me a website", ask first. Do not invent placeholders. Tell them they can change details after the preview. Then call get_preview until preview_url is set. Do not scrape /build. Do not start_build twice for the same business.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City | |
| Yes | Real inbox from the user. We send the preview here. Do not use example.com or placeholders. | ||
| phone | Yes | Real business phone from the user. Do not invent 555 numbers. | |
| state | No | State, e.g. TX | |
| address | No | Optional street address. Skip unless the user offers it. Do not ask for owner name. | |
| industry | Yes | Trade. Prefer a slug: plumbing, hvac, electrical, landscaping, roofing, painting, steel, other. plumber, electrician, HVAC, painter, roofer, landscaper, and similar wording are mapped on the server. Unknown trades become other. | |
| business_name | Yes | Real business name from the user. Do not invent. | |
| industry_other | No | Required when industry is other |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| token | Yes | |
| status | Yes | |
| message | Yes | |
| preview_url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only indicate non-read-only, non-destructive, so the description carries the behavioral burden. It discloses the async workflow with get_preview, the idempotency warning, and the requirement to use real user-supplied information. It does not describe the exact response, but an output schema 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 description is dense but every sentence earns its place. It is front-loaded with the core trigger condition, followed by constraints, workflow, and safety warnings. Nothing is vague or redundant to the point of waste.
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 8 parameters and a follow-up polling requirement, the description is remarkably complete: it covers prerequisites, value sourcing, missing-information handling, placeholder prohibition, changeability, polling, and duplicate-call prevention. The output schema handles return-value expectations.
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. The description adds meaningful semantics beyond the schema by emphasizing that name, email, and phone must come from this chat, never from memory, and must not be invented. This is crucial for parameter correctness.
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's purpose: starting a live preview website build for a local service business. It also gives the exact trigger condition ('wants a live preview website' + details typed in chat), which distinguishes it from siblings like get_preview and get_live_site.
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 explicit when-to-use guidance: only when business_name, email, and phone were typed in this chat. It also gives when-not-to-use guidance: don't reuse old details, ask first if only 'build me a website', don't start twice, and call get_preview until preview_url is set.
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.
4 tool updates
- First observed
create_checkout - First observed
get_live_site - First observed
get_preview - First observed
start_build
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
Launch and operate a SaaS from one conversation — domain, hosting, email, Stripe, ads, security.
Your AI builds real hosted websites: describe it, get a live site with SSL, forms, analytics. Free.
United States payments for AI agents — Stripe checkout via Stripe. Never holds funds.
- LanlanOAuthsite.lanlan
Build a hosted website by chatting. Snapshots, forms, analytics. Hand off the dashboard. Walk away.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceInstant Backend for SMBs — AI-callable MCP tools for generating business pages, Stripe payments, notifications, and invoice processing. No signup, no dashboard, just results.-

paas-buildofficial
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.390MIT
YesHelloofficial
AlicenseAqualityDmaintenanceDigital business cards, lead capture forms, and service listings - built and managed by AI. 63 tools with live browser editing, stock photos, web scraping, and guided tours.6MIT- AlicenseAqualityDmaintenanceEnables building, revising, and deploying AI-generated websites for local service businesses via the Warpweb API, with support for domain management and form webhooks.10511MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool maps to a distinct stage in the workflow: building the preview, polling preview readiness, creating checkout, and checking live status. The descriptions reinforce the boundaries, especially between get_preview and get_live_site.
Tool names follow a clear verb_noun pattern and are mostly consistent: get_preview and get_live_site share get_, and create_checkout uses create_. start_build is a minor deviation since 'start' could have been 'create' or 'build', but the naming remains predictable and readable.
Four tools is appropriate for this focused preview-and-live-site pipeline. Each tool covers an essential step without redundancy or unnecessary bloat.
The core flow from build to preview to checkout to live site is covered, but the start_build description explicitly says users can change details after the preview, and no update or edit tool exists. This leaves a notable dead end for post-preview modifications.