Last updated: 3 June 2026
Use Claude to query and act on your GRC workspace governance, risk, compliance, policies, and more with the same permissions as the CISO Adapt web app.
npx / mcp-remote option only)Your MCP endpoint is the CISO Adapt backend URL with /mcp appended:
https://backend.dev.cisoadapt.ai/mcpUse this value wherever the setup asks for MCP Server URL. Production environments should use HTTPS.
mcp_…).Authorization: Bearer mcp_your_api_key_hereTreat your MCP API key like a password. Never commit it to source control or share it in public channels.
The fastest way to connect is the pre-built cisoadapt.mcpb extension for Claude Desktop.
When the extension prompts you, enter the MCP Server URL and MCP API Key from the sections above.
claude_desktop_config.jsonAdvanced users can register the server directly in Claude Desktop's config file. Merge one of the blocks below into the existing mcpServers object - replace the placeholder API key with your real key from Settings → Integrations → MCP.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonUse this when Claude Desktop supports remote MCP over HTTP with custom headers (typical for hosted HTTPS endpoints).
{
"mcpServers": {
"cisoadapt": {
"url": "https://backend.dev.cisoadapt.ai/mcp",
"headers": {
"Authorization": "Bearer mcp_your_api_key_here"
}
}
}
}mcp-remote via npxUse this when you need a stdio bridge to a remote MCP server - common for local development or when direct HTTP transport is unavailable. The mcp-remote package proxies Claude Desktop to your HTTP MCP endpoint. For HTTPS production URLs, --allow-http is omitted; add it manually only if you point at an HTTP endpoint.
{
"mcpServers": {
"cisoadapt": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://backend.dev.cisoadapt.ai/mcp",
"--header",
"Authorization:${CISOADAPT_MCP_AUTH}"
],
"env": {
"CISOADAPT_MCP_AUTH": "Bearer mcp_your_api_key_here"
}
}
}
}After editing the config, fully quit and reopen Claude Desktop. Confirm the CISO Adapt server appears in Claude's MCP / connectors list.
Bearer mcp_… (including the Bearer prefix). Regenerate the key in CISO Adapt if needed.claude_desktop_config.json, ensure Node.js is installed for the npx option, and restart Claude Desktop completely.--allow-http.