Purple AI MCP Server allows you to access SentinelOne Services with any MCP client.
Coming Soon: In early 2026, we will allow you to connect to this service hosted by SentinelOne.
This server exposes SentinelOne's platform through the Model Context Protocol:
- Purple AI: Ask security questions, investigate threats
- Events: Run PowerQueries on events in your SentinelOne data lake
- Alerts: Query, search, and investigate alerts
- Vulnerabilities: Track CVEs and security findings
- Misconfigurations: Analyze security posture issues
- Inventory: Ask questions about endpoints, cloud resources, identities, and network devices
Purple AI MCP is a read-only service - you cannot make changes to your account or any objects within your account from this MCP.
# Install uv if you don't have it
curl -LsSf https://astral.sh/uv/install.sh | sh
# Set credentials
export PURPLEMCP_CONSOLE_TOKEN="your_token"
export PURPLEMCP_CONSOLE_BASE_URL="https://your-console.sentinelone.net"
# Run
uvx --from git+https://github.com/Sentinel-One/purple-mcp.git purple-mcp --mode=stdio# Build the image
docker build -t purple-mcp:latest .
# Run with your credentials
export PURPLEMCP_CONSOLE_TOKEN="your_token"
export PURPLEMCP_CONSOLE_BASE_URL="https://your-console.sentinelone.net"
docker run -p 8000:8000 \
-e PURPLEMCP_CONSOLE_TOKEN \
-e PURPLEMCP_CONSOLE_BASE_URL \
-e MCP_MODE=streamable-http \
purple-mcp:latestFor production deployments, see Deployment Guide.
Note: Purple AI MCP does not include built-in authentication. For network-exposed deployments, place it behind a reverse proxy or load balancer. See Production Setup for cloud load balancer configurations (AWS ALB, GCP Cloud Load Balancing, Azure Application Gateway) or nginx examples for self-hosted deployments.
Your token needs Account or Site level permissions (not Global). Get one from Policy & Settings → User Management → Service Users in your console. Currently, this server only supports tokens that have access to a single Account or Site. If you need to access multiple sites, you will need to run multiple MCP servers with Account-specific or Site-specific tokens.
Purple AI MCP supports stdio, sse, and streamable-http protocols and should work in any client that supports MCP. Some sample configurations are listed below.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"purple-mcp": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Sentinel-One/purple-mcp.git", "purple-mcp", "--mode", "stdio"],
"env": {
"PURPLEMCP_CONSOLE_TOKEN": "your_token",
"PURPLEMCP_CONSOLE_BASE_URL": "https://your-console.sentinelone.net"
}
}
}
}Run this command in a terminal:
claude mcp add --transport stdio purple-mcp --env PURPLEMCP_CONSOLE_TOKEN=your_token --env PURPLEMCP_CONSOLE_BASE_URL=https://your-console.sentinelone.net -- uvx --from git+https://github.com/Sentinel-One/purple-mcp.git purple-mcp --mode stdio
Run this command in a terminal:
codex mcp add purple-mcp --env PURPLEMCP_CONSOLE_TOKEN=your_token --env PURPLEMCP_CONSOLE_BASE_URL=https://your-console.sentinelone.net -- uvx --from git+https://github.com/Sentinel-One/purple-mcp.git purple-mcp --mode stdio
Here is some example Python code to use Purple MCP with a Pydantic AI Agent.
from pydantic_ai import Agent
from pydantic_ai.mcp import MCPServerStdio
server = MCPServerStdio(
'uvx', args=["--from", "git+https://github.com/Sentinel-One/purple-mcp.git", "purple-mcp", "--mode", "stdio"], timeout=10
)
agent = Agent('anthropic:claude-haiku-4-5', toolsets=[server])Edit ~/.zed/mcp.json:
{
"mcpServers": {
"purple-mcp": {
"enabled": true,
"source": "custom",
"command": "uvx",
"args": ["--from", "git+https://github.com/Sentinel-One/purple-mcp.git", "purple-mcp", "--mode", "stdio"],
"env": {
"PURPLEMCP_CONSOLE_TOKEN": "your_token",
"PURPLEMCP_CONSOLE_BASE_URL": "https://your-console.sentinelone.net"
}
}
}
}For debugging or to host server for multiple clients, run in streamable-http mode and connect via mcp-remote:
# Terminal 1: Start server
export PURPLEMCP_CONSOLE_TOKEN="your_token"
export PURPLEMCP_CONSOLE_BASE_URL="https://your-console.sentinelone.net"
uvx --from git+https://github.com/Sentinel-One/purple-mcp.git purple-mcp --mode streamable-http --host localhost --port 8000
# Terminal 2: Connect with any client
npx -y mcp-remote http://127.0.0.1:8000/mcpWe suggest you do not expose Purple AI MCP on a network at this time, as there is no authentication enforced and anyone could access a configured SentinelOne account.
purple_ai(query)- Ask security questions
powerquery(query, start_time, end_time)- Run PowerQuery analytics
get_alert(alert_id)- Get alert detailslist_alerts(first, after, view_type)- List recent alertssearch_alerts(filters, first)- Search with filtersget_alert_notes(alert_id)- Get alert commentsget_alert_history(alert_id)- View alert timeline
get_vulnerability(id)- Get vulnerability detailslist_vulnerabilities(first, after)- List recent vulnerabilitiessearch_vulnerabilities(filters, first)- Search CVEs and findingsget_vulnerability_notes(id)- Get commentsget_vulnerability_history(id)- View timeline
get_misconfiguration(id)- Get misconfiguration detailslist_misconfigurations(first, after)- List recent issuessearch_misconfigurations(filters, first)- Search by criteriaget_misconfiguration_notes(id)- Get commentsget_misconfiguration_history(id)- View timeline
get_inventory_item(item_id)- Get asset detailslist_inventory_items(limit, skip, surface)- List assets by surface typesearch_inventory_items(filters, limit)- Search with advanced filters
PURPLEMCP_CONSOLE_TOKEN- Service user token (Account or Site level)PURPLEMCP_CONSOLE_BASE_URL- Console URL (e.g., https://console.sentinelone.net)
We welcome your pull requests or issue submissions.
# Install all dependencies
uv sync --group dev --group test
# Format and lint
uv run ruff format
uv run ruff check
uv run mypy# Run unit tests
uv run pytest tests/unit/ -v
# Run integration tests (requires .env.test with real credentials)
uv run pytest tests/integration/ -v
# All tests with coverage
uv run pytest --cov=src/purple_mcp --cov-report=html- Authentication errors: Check your token has Account/Site level permissions (not Global), and your token has not expired
- PowerQuery does not return expected results: Check your token has Account/Site level permissions (not Global)
- Connection failures: Verify your console URL and network access; use
--verbosefor debug logs
This project is licensed under the MIT License - see the LICENSE file for details.
For issues with this MCP server, open an issue.
This project is open source and community-driven. Although it is not an official SentinelOne product, it is maintained by SentinelOne in partnership with the broader open source developer community. See our LICENSE file for further information.
For SentinelOne platform support, use the appropriate support channel.