JupiterOne AI Integration (MCP Server)
The JupiterOne Model Context Protocol (MCP) Server enables AI assistants like Claude Desktop, Claude Code, Cursor, and Amazon Kiro to interact directly with your JupiterOne account using natural language.

Prerequisites
- Active JupiterOne account with API access
- JupiterOne API key and account ID
- Node.js version 18 or higher (for local server only)
- AI assistant with MCP support (Claude Desktop, Claude Code, Cursor IDE, GitHub Copilot, Continue.dev, Cline, Windsurf, Amazon Kiro, etc.)
Installation Methods
Have an AI set this up for you
If you'd rather not edit JSON by hand, copy the prompt below and paste it into your AI assistant. It will ask for the credentials it needs and walk you through the install.
Preview the prompt
Help me install the JupiterOne MCP server in this client. The setup docs are at https://docs.jupiterone.io/integrations/jupiterone-mcp-server.
- Ask whether I want the remote (OAuth, recommended) or local (API key) deployment.
- If local, ask me for my JupiterOne API key and account ID. My account ID can be found at https://docs.jupiterone.io/features/admin/admin-settings#account-management — this is the account ID, not the vanity domain.
- Show me the JSON to add to your MCP config file. If a config already exists, preserve existing servers and merge mine in.
- Tell me how to restart and verify the server is connected.
Manual setup
The JupiterOne MCP Server can be configured in two ways:
Option 1: Remote HTTP Server (Recommended)
Use JupiterOne's hosted MCP server without local installation:
- URL Format:
https://your-account-id-here.mcp.<REGION>.jupiterone.io/mcp - Example:
https://j1dev.mcp.us.jupiterone.io/mcp - Authentication: OAuth-based authentication with JupiterOne login
Replace <REGION> with us or eu based on your JupiterOne instance. The examples in this guide use us.
The remote HTTP server option:
- Requires no local installation
- Handles authentication through JupiterOne's OAuth flow
- Automatically stays up-to-date with the latest features
- Works across different machines without setup
Option 2: Local Server (stdio)
Install and run the MCP server locally using npx:
npx @jupiterone/jupiterone-mcp
Or install globally for repeated use:
npm install -g @jupiterone/jupiterone-mcp
Configuration
Get Your Credentials
For Remote Server (Option 1)
- Account ID: Found in Account Management
- Region: Your JupiterOne instance region (e.g.,
us,eu)
For Local Server (Option 2)
- API Key: Navigate to Settings → User API Tokens in JupiterOne and create a new API key
- Account ID: Found in Account Management or by running:
find jupiterone_account as x return x.accountId
- Local Server: Uses API key authentication and runs within the context of the user, respecting RBAC configuration
- Remote Server: Uses OAuth authentication through JupiterOne login, automatically applying your user permissions
AI Platform Setup
- Claude Desktop
- Claude Code
- Cursor IDE
- GitHub Copilot
- Continue.dev
- Cline (VS Code Extension)
- Windsurf IDE
- Amazon Kiro
Configuration file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Local server
Edit the configuration file above and add:
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Restart Claude Desktop.
Remote server
In the Claude Desktop App:
- Navigate to Settings → Connectors.
- Click Add custom connector at the bottom of the section.
- Set the title to
JupiterOneand the URL tohttps://your-account-id-here.mcp.us.jupiterone.io/mcp. - Click Add and complete the OAuth sign-in.
Claude Code supports MCP via CLI command or config file.
Option A — CLI (recommended)
For the local server:
claude mcp add jupiterone -- npx -y @jupiterone/jupiterone-mcp \
--env JUPITERONE_API_KEY=your-api-key-here \
--env JUPITERONE_ACCOUNT_ID=your-account-id-here
For the remote server:
claude mcp add --transport http jupiterone https://your-account-id-here.mcp.us.jupiterone.io/mcp
Option B — Config file
Edit ~/.claude.json (user-level) or create .mcp.json in your project root (project-level, can be checked into source control):
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
Replace us with eu if your JupiterOne instance is in the EU region.
Run /mcp inside Claude Code to verify the server is connected.
- Open Cursor Settings (⌘+, on Mac, Ctrl+, on Windows).
- Navigate to Features → Model Context Protocol.
- Add configuration based on your chosen method:
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
Replace us with eu if your JupiterOne instance is in the EU region.
- Restart Cursor.
If you've previously connected to JupiterOne or need to switch accounts:
- In Cursor Settings, navigate to Features → Model Context Protocol.
- Expand the Tools enabled section for the JupiterOne MCP server.
- Click the Logout button at the top.
- Restart Cursor to reauthenticate with your JupiterOne account.
GitHub Copilot MCP support is in public preview. Available in Visual Studio Code, JetBrains, Eclipse, and Xcode.
- Create
.vscode/mcp.jsonin your project root. - Add configuration based on your chosen method.
Local Server Configuration:
{
"servers": {
"jupiterone": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"servers": {
"jupiterone": {
"type": "http",
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
- Click Start in the gutter of
.vscode/mcp.jsonto launch the server. - Open Copilot Chat, select Agent mode, and click the tools icon to confirm JupiterOne tools are listed.
For details, see the GitHub Copilot MCP documentation.
- Open Continue.dev settings.
- Navigate to MCP configuration.
- Add configuration based on your chosen method:
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
Replace us with eu if your JupiterOne instance is in the EU region.
- Install the Cline extension from the VS Code marketplace.
- Open VS Code settings (⌘+, on Mac, Ctrl+, on Windows).
- Search for "Cline MCP".
- Add configuration based on your chosen method:
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
Replace us with eu if your JupiterOne instance is in the EU region.
- Open Windsurf Settings.
- Navigate to AI → Model Context Protocol.
- Add configuration based on your chosen method:
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
}
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp"
}
}
}
Replace us with eu if your JupiterOne instance is in the EU region.
- Restart Windsurf.
-
Locate or create your Kiro MCP configuration file:
- Workspace (project-specific):
.kiro/settings/mcp.jsonin your project root - User (global):
~/.kiro/settings/mcp.json
Workspace settings override user settings when both define the same server.
- Workspace (project-specific):
-
Add configuration based on your chosen method.
Local Server Configuration:
{
"mcpServers": {
"jupiterone": {
"command": "npx",
"args": ["-y", "@jupiterone/jupiterone-mcp"],
"env": {
"JUPITERONE_API_KEY": "your-api-key-here",
"JUPITERONE_ACCOUNT_ID": "your-account-id-here"
},
"disabled": false,
"autoApprove": []
}
}
}
Remote Server Configuration:
{
"mcpServers": {
"jupiterone": {
"url": "https://your-account-id-here.mcp.us.jupiterone.io/mcp",
"disabled": false,
"autoApprove": []
}
}
}
-
Save the file. Kiro applies
autoApproveanddisabledToolschanges immediately, but you must restart Kiro to register a newly added server. -
Verify the connection by opening Kiro's Output panel and selecting Kiro - MCP Logs.
Kiro supports stdio and HTTP transports natively but does not currently support SSE.
Verify Installation
Once configured, test the connection by asking your AI assistant:
"List my JupiterOne integrations"
A successful response confirms the MCP server is connected and authenticated. If you receive an error or no response, see Troubleshooting.
What You Can Do
Ask your AI assistant natural language questions like:
- "Show me all critical vulnerabilities from the last 7 days"
- "Which EC2 instances have public IP addresses?"
- "Create a dashboard tracking my biggest security risks"
- "Find all users with admin privileges"
- "Get active alerts related to unauthorized access"
The MCP server provides 26 tools for querying data, managing alerts and rules, creating dashboards, and monitoring integrations.
Known Limitations
- Limited write operations: Modify and delete actions are restricted for safety
- ChatGPT incompatibility: Does not work with ChatGPT's current MCP specification
The MCP server consumes your JupiterOne API rate limit quota. Each operation counts against your API rate limits. Monitor your usage to avoid hitting limits during critical operations.