Developer Tools
augenix.ai
This server creates live preview websites for local service businesses and manages checkout payments to make them live.
ENDPOINT 1
https://app.augenix.ai/api/mcp/public
MCP server metadata
- Name
- augenix-build
- Version
- 1.1.4
Never reuse name, email, or phone from memory or an earlier chat. If the user has not typed those in THIS chat, ask before start_build. Do not invent placeholders. Do not ask for owner name. Street address is optional. Tell them they can change details after the preview. Then: (1) start_build (2) get_preview until status is ready — do not stop at building (3) send preview_url (4) create_checkout only if they want the site live (5) get_live_site after payment. If keep_polling is true, call get_preview again. Never start_build twice for the same business. Do not use /api/mcp (admin). Humans: https://augenix.ai/build. Contract: https://augenix.ai/mcp
Known tools 4
start_buildUse 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.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.augenix-build]
url = "https://app.augenix.ai/api/mcp/public"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"augenix-build": {
"type": "http",
"url": "https://app.augenix.ai/api/mcp/public"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: augenix-build
Remote MCP URL: https://app.augenix.ai/api/mcp/public
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"augenix-build": {
"url": "https://app.augenix.ai/api/mcp/public"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"augenix-build": {
"type": "http",
"url": "https://app.augenix.ai/api/mcp/public"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "augenix-build",
"transport": "streamable-http",
"url": "https://app.augenix.ai/api/mcp/public"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://app.augenix.ai/api/public/mcp
MCP server metadata
- Name
- augenix-build
- Version
- 1.1.4
Never reuse name, email, or phone from memory or an earlier chat. If the user has not typed those in THIS chat, ask before start_build. Do not invent placeholders. Do not ask for owner name. Street address is optional. Tell them they can change details after the preview. Then: (1) start_build (2) get_preview until status is ready — do not stop at building (3) send preview_url (4) create_checkout only if they want the site live (5) get_live_site after payment. If keep_polling is true, call get_preview again. Never start_build twice for the same business. Do not use /api/mcp (admin). Humans: https://augenix.ai/build. Contract: https://augenix.ai/mcp
Known tools 4
start_buildUse 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.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.augenix-build]
url = "https://app.augenix.ai/api/public/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"augenix-build": {
"type": "http",
"url": "https://app.augenix.ai/api/public/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: augenix-build
Remote MCP URL: https://app.augenix.ai/api/public/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"augenix-build": {
"url": "https://app.augenix.ai/api/public/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"augenix-build": {
"type": "http",
"url": "https://app.augenix.ai/api/public/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "augenix-build",
"transport": "streamable-http",
"url": "https://app.augenix.ai/api/public/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 3
https://app.augenix.ai/api/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.augenix-ai]
url = "https://app.augenix.ai/api/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"augenix-ai": {
"type": "http",
"url": "https://app.augenix.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: augenix-ai
Remote MCP URL: https://app.augenix.ai/api/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"augenix-ai": {
"url": "https://app.augenix.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"augenix-ai": {
"type": "http",
"url": "https://app.augenix.ai/api/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "augenix-ai bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "augenix-ai",
"transport": "streamable-http",
"url": "https://app.augenix.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.