Sumo Logic AI Plugins
AI coding tool plugins for Sumo Logic — connecting GitHub Copilot, Claude Code, and other AI development tools to the Sumo Logic observability platform.
What You Get
- MCP tools —
runLogSearch,listPartitions,listCustomFields,listExtractionRules, dashboards, alerts, SIEM insights, and detection rules /sumo-investigator— Senior investigation agent that answers natural language operational questions using Sumo Logic platform data
Prerequisites
- Sumo Logic account with credentials (any role — no admin required for CIMD)
- Your deployment's MCP server URL (see table below)
| Region | MCP Server URL |
|---|---|
| US East (N. Virginia) | https://mcp.sumologic.com/mcp |
| US West (Oregon) | https://mcp.us2.sumologic.com/mcp |
| Europe (Ireland) | https://mcp.eu.sumologic.com/mcp |
| Europe (Frankfurt) | https://mcp.de.sumologic.com/mcp |
| Asia Pacific (Tokyo) | https://mcp.jp.sumologic.com/mcp |
| Asia Pacific (Sydney) | https://mcp.au.sumologic.com/mcp |
| Asia Pacific (Seoul) | https://mcp.kr.sumologic.com/mcp |
| Canada (Central) | https://mcp.ca.sumologic.com/mcp |
| FedRAMP (US East) | https://mcp.fed.sumologic.com/mcp |
GitHub Copilot
Works with both the VS Code Copilot extension and Copilot CLI from a single plugin.
Installation
VS Code:
- Open the Extensions activity bar
- Enter
@agentPlugins sumo-logicin the search field - Select the Sumo Logic plugin and click Install
Copilot CLI:
copilot plugin install sumo-logic@awesome-copilot
First-time setup
After installation, run /sumosetup in Copilot chat. The skill will:
- Ask which Sumo Logic deployment you use
- Configure the MCP server with the correct endpoint
- Guide you through OAuth authentication
Usage
Ask naturally about your Sumo Logic data:
Show me error logs from the last hour
What alerts are currently triggered?
Are there any critical security insights from today?
List my dashboards
Or invoke the investigation skill directly:
/sumo-investigator what errors are happening in the API gateway?
Claude Code
Installation
/plugin install sumologic-mcp@claude-community
On first enable, Claude Code prompts for your MCP Server URL from the table above.
Authentication
The plugin uses OAuth 2.0 with CIMD (Client ID Metadata Documents) — no pre-created credentials or admin setup required. Claude Code handles authentication and token refresh automatically.
First-time setup
- Launch Claude Code with the plugin installed
- Run
/mcp - Select sumo-logic → Authenticate
- A browser window opens — log in with your Sumo Logic credentials
- If your org uses an identity provider, click Sign in with your identity provider
- Run
/mcpagain — the server should show as connected
Switching organizations
To connect to a different Sumo Logic org:
- Run
/mcp - Select sumo-logic → Clear authentication
- Select Authenticate and log in to the new org
Note: If you previously granted consent for an org, you will not be prompted again. To revoke consent, go to your Sumo Logic user settings and remove the app under Personal Authorized Apps.
Manual OAuth (pre-registered client)
For environments that don't support CIMD, an administrator can create an OAuth client manually:
- Create an Authorization Code client in Sumo Logic with redirect URI
http://localhost:8888/callback - Register manually in Claude Code:
claude mcp add --scope user --transport http \
--client-id "<client-id>" --client-secret --callback-port 8888 \
sumo-logic "https://mcp.sumologic.com/mcp"
Usage
Investigation Skill
/sumologic-mcp:sumo-investigator what errors are happening in the API gateway in the last hour?
/sumologic-mcp:sumo-investigator are there any critical security insights from today?
/sumologic-mcp:sumo-investigator show me triggered alerts for the collector service
The skill follows a structured 3-step workflow (Discover → Scoped Sample → Targeted Query) and covers logs, alerts, SIEM insights, detection rules, and dashboards.
Direct Tool Use
You can also ask naturally without invoking the skill — Claude will use the MCP tools directly:
Search sumo for HTTP 500 errors in the last 15 minutes
Show me critical security insights from this week
List dashboards related to kubernetes
Development
Test the Claude Code plugin locally:
claude --plugin-dir .
Validate before submission:
claude plugin validate .