End-user installation

First you’ll need an API Key from us to use the MCP server.

Visit our get started page, fill out the sign up form, and you’ll receive your key.

Next, you’ll update your editor / IDE / LLM client to connect to the Zenable MCP server’s endpoint.

Add this entry to your mcp.json configuration file as described in the cursor documentation:

{
    "mcpServers": {
        "zenable": {
            "url": "https://mcp.www.zenable.app/",
            "headers": {
                "API_KEY": "${input:zenable_api_key}"
            }
        }
    },
    "inputs": [
        {
            "type": "promptString",
            "id": "zenable_api_key",
            "description": "Your Zenable API Key",
            "password": true
        }
    ]
}

Next, add these user rules to Cursor.

- After generating code, creating a new file or edit a files you must always check those files with the Zenable tool recommendations from the Zenable MCP server to validate it against the company policies.
- Follow all recommendations and required changes as reported by the Zenable MCP server.

You can add those rules for the current project and share it with your team, using this mdc file

zenable_rules.mdc
---
description: Run Zenable Compliance with MCP
globs: *.*
alwaysApply: true
---

- After generating code, creating a new file or editing files you must always check those files with the Zenable tool recommendations from the Zenable MCP server to validate it against the company policies.
- Follow all recommendations and required changes as reported by the Zenable MCP server.

For more details on the MCP protocol or advanced configuration, see the official documentation for your client (Cursor or Windsurf).