Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.audditur.com/llms.txt

Use this file to discover all available pages before exploring further.

Claude Desktop loads MCP servers from a local configuration file. Adding Audditur takes one edit and a restart.

1. Locate claude_desktop_config.json

~/Library/Application Support/Claude/claude_desktop_config.json
If the file does not yet exist, create it with an empty JSON object ({}).

2. Register the Audditur server

Add an audditur entry under mcpServers. The command runs the gateway via npx and forwards your gateway credentials as environment variables.
claude_desktop_config.json
{
  "mcpServers": {
    "audditur": {
      "command": "npx",
      "args": ["-y", "@retinalabsllc/audditur-mcp@latest"],
      "env": {
        "MCP_BASE_URL": "https://audditur.com",
        "PUBLIC_KEY": "your-public-key",
        "SECRET_KEY": "your-secret-key"
      }
    }
  }
}
Replace your-public-key and your-secret-key with the values from your Audditur dashboard. Never commit SECRET_KEY to a public repository — Claude reads this file directly from your home directory.

3. Restart Claude Desktop

Fully quit and relaunch Claude. The Audditur tools (get_workspace, create_application, and the rest) will appear in the tool menu inside any new conversation.

4. Try it out

Ask Claude something like:
“List the members of my Audditur workspace and start a new COMPANY_REGISTRATION application called Northwind Labs.”
Claude will call get_workspace followed by create_application to complete the request.