Documentation MCP
The Siesta AI documentation MCP server gives AI coding tools read-only access to the current public documentation. Clients can search for relevant pages and read a complete page or a specific section without downloading the entire documentation set.
Endpoint
https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp
The server is public, does not require a Siesta AI account, and cannot modify Siesta AI data. Do not send passwords, API keys, personal data, or other secrets in documentation queries.
Codex
codex mcp add --url https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp siesta-docs
Claude Code
Run this command in the macOS Terminal or your IDE's integrated terminal, not as a message inside a Claude chat:
claude mcp add --transport http --scope user siesta-docs https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp
Verify the connection with claude mcp get siesta-docs or /mcp inside Claude Code.
For a Claude Code cloud session, add the server to the repository's .mcp.json instead:
{
"mcpServers": {
"siesta-docs": {
"type": "http",
"url": "https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp"
}
}
}
Claude web and desktop
Open Claude Connectors, choose Add custom connector, and enter the endpoint above. The server is public, so leave OAuth fields empty. In Team and Enterprise organizations, an owner may need to add the connector first.
Cursor
Add this server to your Cursor MCP configuration:
{
"mcpServers": {
"siesta-docs": {
"type": "http",
"url": "https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp"
}
}
}
VS Code
Add the server to .vscode/mcp.json or your user MCP configuration:
{
"servers": {
"siesta-docs": {
"type": "http",
"url": "https://wonderful-cliff-086def303.3.azurestaticapps.net/api/mcp"
}
}
}
Available capabilities
search_docssearches English or Czech documentation and returns concise source excerpts with canonical links.read_docreturns a complete document or a section under a selected heading.- Documentation resources expose individual pages through stable
docs://URIs.
Search results always include their documentation URL. Use that URL to verify instructions before making production changes.
Troubleshooting
If a shell reports claude: command not found, install Claude Code or run the command on a machine where its CLI is available. If the client still cannot connect, verify that it supports Streamable HTTP MCP servers and that your network can access wonderful-cliff-086def303.3.azurestaticapps.net over HTTPS. Remove and re-add the server after changing its configuration. A temporary 503 response means the published documentation index is unavailable; retry after the next documentation deployment.