Set Up the MCP Server
The Versa Documentation portal includes a Model Context Protocol (MCP) server that lets AI tools search and retrieve content directly from the documentation. Instead of browsing for answers, you can ask your AI assistant questions and get results pulled straight from the official docs.
MCP Server URL:
https://doc-portal-five.vercel.app/mcp/mcp
What is MCP?
The Model Context Protocol is an open standard that allows AI applications to connect to external data sources. When you add the Versa Documentation MCP server to a supported tool, that tool gains a search capability over the entire documentation set — articles, configuration guides, API references, and more.
ChatGPT
- In ChatGPT, go to Settings > Connectors.
- Under Advanced, enable Developer Mode.
- Click Create, enter the MCP server URL, and click Save:
https://doc-portal-five.vercel.app/mcp/mcp
MCP connectors in ChatGPT require a Plus or Pro subscription.
Claude (Web)
- In claude.ai, go to Settings > Connectors and click Add custom connector.
- Fill in the fields:
| Field | Value |
|---|---|
| Name | Versa Documentation |
| URL | https://doc-portal-five.vercel.app/mcp/mcp |
- Click Add to save.
Claude Code
Run the following command in your terminal:
claude mcp add --transport http VersaDocs https://doc-portal-five.vercel.app/mcp/mcp
The server is available immediately in your next Claude Code session.
Codex CLI
Add the server to ~/.codex/config.toml:
[mcp_servers.VersaDocs]
url = "https://doc-portal-five.vercel.app/mcp/mcp"
Restart the Codex CLI for changes to take effect.
Gemini CLI
Add the server to ~/.gemini/settings.json:
{
"mcpServers": {
"VersaDocs": {
"url": "https://doc-portal-five.vercel.app/mcp/mcp"
}
}
}
Restart the Gemini CLI for changes to take effect. Use /mcp to verify the connection.
Cursor
- Open the Command Palette (
Cmd+Shift+Pon macOS,Ctrl+Shift+Pon Windows/Linux) and search for Open MCP settings. - Add the following to
mcp.json:
{
"mcpServers": {
"VersaDocs": {
"url": "https://doc-portal-five.vercel.app/mcp/mcp"
}
}
}
VS Code / GitHub Copilot
Create a .vscode/mcp.json file in your project root:
{
"servers": {
"VersaDocs": {
"type": "http",
"url": "https://doc-portal-five.vercel.app/mcp/mcp"
}
}
}
The MCP server tools are automatically available to GitHub Copilot in agent mode.
Windsurf
Open the MCP config file by clicking the MCPs icon in the top-right corner of the Cascade panel, then select Configure. Add the following to mcp_config.json:
{
"mcpServers": {
"VersaDocs": {
"serverUrl": "https://doc-portal-five.vercel.app/mcp/mcp"
}
}
}
Restart Windsurf for the changes to take effect.
Try It Out
Once connected, ask your AI assistant questions like:
- "How do I configure SAML SSO with Okta in Versa Concerto?"
- "What are the steps to create an EIP profile?"
- "How does Trusted Network Detection work?"
- "What API permissions does the Intune integration require?"
The AI tool searches the documentation and returns relevant content with direct links to the source pages.
Requirements
- The MCP server is available for public documentation only. No authentication is required to connect.
- Your AI tool must support the Model Context Protocol. The tools listed above all have built-in MCP support.
