INDIVIDUAL MCP TOOL
get_onboarding_status
Get the live status of an agent-first onboarding workspace: workspace and claim state, the setup checklist (knowledge crawl/training, persona, starters, …), the browser onboarding page URL, and the POST-only claim API endpoint (claimUrl is for agents/CLI clients — never a page to open in a browser).
LIVE ENDPOINT
https://sitegpt.ai/mcp
Connect to this endpoint to inspect the live schema for get_onboarding_status and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests retrieving external content.
Parent server
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.sitegpt]
url = "https://sitegpt.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"sitegpt": {
"type": "http",
"url": "https://sitegpt.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: sitegpt
Remote MCP URL: https://sitegpt.ai/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": {
"sitegpt": {
"url": "https://sitegpt.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"sitegpt": {
"type": "http",
"url": "https://sitegpt.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "sitegpt",
"transport": "streamable-http",
"url": "https://sitegpt.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
search— Search the SiteGPT API v2 OpenAPI spec.execute_read— Run read-only SiteGPT API v2 calls (GET only) using JavaScript code.execute_write— Create, update or delete SiteGPT API v2 resources (POST, PUT, PATCH or DELETE only) using JavaScript code.preview_chatbot— Render a live, interactive preview of a SiteGPT chatbot directly in the conversation (MCP Apps extension).send_chat_message— Send a visitor message to a SiteGPT chatbot and get its answer — the data lane behind the inline chatbot preview's built-in chat.get_chatbot_appearance— Read the chatbot widget appearance (colors, launcher position and shape, title, welcome message, placeholder, tooltip) plus its starter questions, for the inline appearance card.update_chatbot_appearance— Update the chatbot widget appearance: title, welcome message, placeholder, tooltip, brand/launcher/link colors (#rrggbb), and launcher position.list_conversations— List a chatbot conversation inbox with filters (open/resolved status, escalated-only) and cursor pagination, projected to compact rows with a last-message snippet.