Connect to Saner MCP Server
This page walks you through connecting your AI code editor to the Saner MCP server so your assistant can access the Saner API and SDK documentation directly from your editor.
MCP Server URL
https://apidocs.secpod.com/mcp
Saner MCP Server Setup
Saner hosts a remote MCP server at https://apidocs.secpod.com/mcp. Configure your AI development tools to connect to this server.
No authentication is required, and you should not send credentials. The server is read-only and
serves only public API and SDK documentation — it never calls the Saner API and has no access to any
Saner account, so an API key would have nothing to authenticate against. Keep your Saner API key for
the integration scripts you write and run yourself.
Add to~/.cursor/mcp.json:
{
"mcpServers": {
"saner": {
"url": "https://apidocs.secpod.com/mcp"
}
}
}Add to~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"saner": {
"url": "https://apidocs.secpod.com/mcp"
}
}
}Add toclaude_desktop_config.json:
"mcpServers": {
"saner": {
"command": "npx",
"args": [
"mcp-remote",
"https://apidocs.secpod.com/mcp"
]
}
}Create .mcp.json inside the project directory.
{
"mcpServers": {
"saner": {
"command": "npx",
"args": [
"mcp-remote",
"https://apidocs.secpod.com/mcp"
]
}
}
}
After Configuring
1. Restart Your Editor
Fully quit and relaunch the MCP Client so the new MCP configuration is picked up.
2. Open a New Chat
Start a fresh chat session with the AI assistant, existing sessions will not have the MCP server loaded.
3. Test the Connection
Try one of the following prompts to verify the MCP server is working:
"What APIs does Saner expose?""Show me an example of how to fetch vulnerability data using Saner.""How do I add an organization in Saner?"
If the assistant responds with accurate, context-aware information about Saner, your setup is working correctly.
Updated 1 day ago
