Setup instructions for AI assistants using MCP
Connect your AI assistant to Reaudit using the MCP server. This guide covers setup for Claude Desktop, Cursor, VS Code, Windsurf, and other MCP clients.
node --version in your terminal.Authentication uses OAuth 2.0 with PKCE -- sign in with your Reaudit account through your browser.
Add the following to your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"reaudit": {
"command": "npx",
"args": ["@reaudit/mcp-server"],
"env": {
"REAUDIT_BASE_URL": "https://reaudit.io"
}
}
}
}"npx" with the full path from which npx in your terminal (e.g. /usr/local/bin/npx). See Troubleshooting below.Restart Claude Desktop after saving the file.
{
"mcpServers": {
"reaudit": {
"command": "npx",
"args": ["@reaudit/mcp-server"],
"env": {
"REAUDIT_BASE_URL": "https://reaudit.io"
}
}
}
}"npx" with the full path from which npx in your terminal. See Troubleshooting below.{
"mcp": {
"servers": {
"reaudit": {
"command": "npx",
"args": ["@reaudit/mcp-server"],
"env": {
"REAUDIT_BASE_URL": "https://reaudit.io"
}
}
}
}
}{
"mcpServers": {
"reaudit": {
"command": "npx",
"args": ["@reaudit/mcp-server"],
"env": {
"REAUDIT_BASE_URL": "https://reaudit.io"
}
}
}
}Run in your terminal:
claude mcp add reaudit -- npx @reaudit/mcp-serverThen authenticate:
/mcp in Claude CodeMost MCP clients support stdio transport:
npx["@reaudit/mcp-server"]REAUDIT_BASE_URL=https://reaudit.ioFor web-based clients or remote connections, you can run the server with HTTP/SSE transport:
npx @reaudit/mcp-server --http --port=8090This starts an HTTP server with SSE at http://localhost:8090/sse. For clients that support mcp-remote:
npx -y mcp-remote http://localhost:8090/sseThe MCP server uses OAuth 2.0 with PKCE. On first use, it will:
~/.reaudit/credentials.json (encrypted with AES-256-CBC)Tokens auto-refresh. No API keys to manage.
Remove the server and add it again:
# Claude Code
claude mcp remove reaudit
claude mcp add reaudit -- npx @reaudit/mcp-serverOther clients: Delete ~/.reaudit/credentials.json and restart.
On this page