Skip to content

Products

Compliance Officer Service Expert-led compliance, end to end Compliance Portal Share security documents securely Open-source platform Deploy Probo on your own infrastructure

Resources

Probo stories How teams get compliant with Probo Blog Ideas and guidance from the Probo team Guides & tools Practical compliance guides and free tools Love from Customers What customers say about working with Probo Changelog Latest product updates Download Get the Probo Agent

Company

About The people and vision powering Probo Careers Join the team building Probo Brand assets Official logos and visual resources Security Review our security and compliance posture
Overview Understand Probo and its core concepts Product Explore Probo's GRC capabilities Developers Explore GraphQL, CLI, MCP, n8n, and webhooks Deployment Probo Cloud, self-hosting, and configuration

Explore

GitHub Explore our open-source compliance tools

Claude Desktop Configuration

Configure the Probo MCP Server with Claude Desktop application

View as Markdown

This guide shows you how to configure the Probo MCP Server with the Claude Desktop application, enabling Claude to interact with your compliance data directly from the desktop interface.

  • Claude Desktop application installed (available for macOS and Windows)
  • A running Probo instance with API access

Choose the endpoint for your Probo environment:

Environment MCP URL
Probo US https://us.probo.com/api/mcp/v1
Probo EU https://eu.probo.com/api/mcp/v1
Custom https://your-probo-instance.com/api/mcp/v1

The /v1 segment is required.

1. Locate Claude Desktop Configuration File

Section titled “1. Locate Claude Desktop Configuration File”

The Claude Desktop configuration file location depends on your operating system:

macOS:

Terminal window
~/Library/Application Support/Claude/claude_desktop_config.json

Windows:

Terminal window
%APPDATA%\Claude\claude_desktop_config.json

Edit the claude_desktop_config.json file and add the Probo MCP server:

{
"mcpServers": {
"probo": {
"type": "http",
"url": "https://your-probo-instance.com/api/mcp/v1"
}
}
}

Replace https://your-probo-instance.com/api/mcp/v1 with your Probo instance URL.

After saving the configuration:

  1. Quit Claude Desktop completely
  2. Restart the application
  3. On first use, Claude Desktop will open a browser window to authorize access to your Probo instance via OAuth — log in and grant access

To verify the MCP server is working:

  1. Open Claude Desktop
  2. Start a new conversation
  3. Try asking: “List all organizations I have access to”
  4. Claude should use the listOrganizations tool to fetch your data

You can also check the MCP server status by looking for the Probo server in Claude Desktop’s status indicators.

Once configured, you can interact with your Probo data naturally:

You: "Show me all high-priority risks in my organization"
Claude: I'll fetch the risks for you.
[Uses listRisks tool]
Here are the high-priority risks:
1. Data breach from third-party systems
2. Inadequate access controls
...
You: "Add a new third party called 'CloudStore Inc' that provides storage services"
Claude: I'll add that third party for you.
[Uses addThirdParty tool]
Successfully added CloudStore Inc as a third party.
You: "What compliance measures are currently in progress?"
Claude: Let me check the measures.
[Uses listMeasures tool with state filter]
You have 5 measures in progress:
- Employee security training
- Password policy enforcement
...

If the Probo MCP server doesn’t appear:

  1. Check the configuration file syntax (must be valid JSON)
  2. Verify the Probo URL is accessible from your machine
  3. Check Claude Desktop logs for errors

View Claude Desktop Logs:

macOS:

Terminal window
tail -f ~/Library/Logs/Claude/mcp*.log

Windows:

Terminal window
type %APPDATA%\Claude\logs\mcp*.log

If requests timeout:

  • Verify your Probo instance is running and accessible
  • Check firewall settings
  • Ensure your network allows connections to the Probo URL

If Claude says tools aren’t available:

  • Restart Claude Desktop completely
  • Verify the MCP server loaded without errors in the logs
  • Check that your Probo instance supports the MCP API
  • Ensure you’re using a compatible version of Claude Desktop
  • Use HTTPS: Always connect to Probo over HTTPS in production
  • Audit access: Review MCP access logs in your Probo instance

Need help with Claude Desktop configuration?