Connect your AI assistant to Reaudit in under a minute
The Reaudit MCP server is hosted at mcp.reaudit.io. No installation or Node.js required -- just add a URL to your MCP client.
~/.cursor/mcp.json:{
"mcpServers": {
"reaudit": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY",
"--transport",
"sse-only"
]
}
}
}Replace YOUR_API_KEY with the key from Step 1. Cursor uses the mcp-remote wrapper to bridge the hosted SSE server, so Node.js 18+ must be available on your PATH.
Connect directly from the Claude.ai web interface using OAuth -- no API key needed.
https://mcp.reaudit.io/mcpAdd the following to your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"reaudit": {
"url": "https://mcp.reaudit.io/mcp"
}
}
}Restart Claude Desktop after saving the file. You'll be prompted to sign in to your Reaudit account via OAuth when the server connects.
ChatGPT connects to Reaudit as a custom connector using Developer mode. Authentication is handled with OAuth -- you sign in to your Reaudit account, so no API key is needed.
https://mcp.reaudit.io/mcpAdd Reaudit to a Microsoft Copilot Studio agent (also surfaces in Microsoft 365 Copilot). Reaudit supports OAuth with Dynamic Client Registration and discovery, so no manual app registration is required.
https://mcp.reaudit.io/mcphttps://reaudit.io/api/oauth/authorize and https://reaudit.io/api/oauth/token.Le Chat connects to any remote MCP server using OAuth 2.1 -- no API key needed. Adding a custom connector requires an admin on Team plans (Free/Pro users are admins by default).
reaudit (no spaces)https://mcp.reaudit.io/mcp{
"mcp": {
"servers": {
"reaudit": {
"url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
}
}
}
}{
"mcpServers": {
"reaudit": {
"url": "https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEY"
}
}
}Run in your terminal:
claude mcp add --transport http reaudit https://mcp.reaudit.io/mcp?apiKey=YOUR_API_KEYFlags like --transport must come before the server name. Use --scope project to share the config with your team via .mcp.json.
The server supports two transports. Use whichever your client supports:
Streamable HTTP (recommended for newer clients)
https://mcp.reaudit.io/mcp?apiKey=YOUR_API_KEYSSE (legacy, for older clients)
https://mcp.reaudit.io/sse?apiKey=YOUR_API_KEYNo local installation or Node.js required. Both transports support API key authentication.
https://mcp.reaudit.io/mcp without an API key -- just sign in to Reaudit when prompted. Reaudit handles OAuth discovery and dynamic client registration automatically.On this page