Get your MCP endpoint URL
The MCP endpoint URL is specific to the sureops documentation project. You can find it in two places:- sureops dashboard — navigate to Settings → Integrations → MCP to see the docs MCP URL for your organization
- Mintlify project admin — if you have access to the Mintlify admin panel for the sureops docs project, the URL is listed under Admin → MCP
Cursor
Add the sureops MCP server to your Cursor configuration:1
Open or create .cursor/mcp.json
In your project root (or your global Cursor config), open or create
.cursor/mcp.json.2
Add the sureops server
[your-project-mcp-url] with the URL from Settings → Integrations → MCP in your sureops dashboard.3
Reload Cursor
Open the command palette (
Cmd/Ctrl + Shift + P) and run Reload Window (or restart Cursor). The sureops-docs server will appear in your MCP tools list.VS Code (GitHub Copilot)
GitHub Copilot in VS Code supports MCP servers via the.vscode/mcp.json configuration file (available in Copilot agent mode):
1
Open or create .vscode/mcp.json
In your project root, open or create
.vscode/mcp.json.2
Add the sureops server
3
Open Copilot Chat in agent mode
In the Copilot Chat panel, switch to Agent mode. The sureops docs MCP server will be available as a tool for Copilot to query.
Other MCP-compatible clients
Any client that supports the Model Context Protocol can connect to the sureops docs server by pointing it at your MCP endpoint URL. The server uses standard MCP transport — refer to your client’s documentation for how to add a custom HTTP MCP server.Programmatic access
Beyond MCP, sureops documentation is accessible in several text-friendly formats:llms.txt
The docs site exposes an/llms.txt file at the root — a compact, LLM-friendly index of the documentation structure and key content. Load it as context in any LLM session:
Per-page Markdown
Every documentation page is available as plain Markdown by appending.md to the URL. For example:
Troubleshooting
The MCP server isn’t appearing in Cursor/VS Code- Confirm the URL in your config file is correct and has no trailing slash
- Check that your IDE is running a version that supports remote MCP servers (Cursor 0.44+, VS Code with Copilot agent mode)
- Reload the window or restart the IDE after saving the config file
Related
- Give feedback — request features or report issues with the MCP integration