AlertLogic MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AlertLogic MCP Servershow me my open critical incidents from the last 24 hours"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AlertLogic MCP Server
Bring the full AlertLogic MDR platform into your AI assistant.
A Model Context Protocol server that exposes the complete AlertLogic API surface as structured tools any MCP-compatible client (Claude Desktop, Claude Code, Cursor, …) can call directly — enabling AI-powered security operations, incident response, and threat hunting at MSSP scale.
For incident responders: Query Alert Logic MDR incidents, elaborate raw log evidence, kick off SOAR playbooks, and search logs with SQL — all through Claude. Designed for MSSP-scale multi-account operations.
Table of Contents
Related MCP server: SOAR MCP Server
Overview
This MCP server wraps the AlertLogic MDR platform API and exposes it as 473+ structured tools that any MCP-compatible AI client can call directly. It covers the full AlertLogic API surface — incident response, SQL-based log search, SOAR playbook automation, asset management, vulnerability analysis, user and credential management, billing, and more — organized into 46 domain modules. Auth, retries, pagination, token management, and JSON shaping are handled server-side; your AI client simply calls the tool by name.
Features
Incident Response — List, get, elaborate (raw log evidence), complete, reopen, add notes, and add feedback to incidents. Friendly-ID lookup included.
SQL Log Search — Submit AlertLogic log search queries in SQL, poll status, retrieve results, and release sessions.
SOAR Playbook Automation — List, get, execute, and monitor SOAR playbooks; manage inquiries, triggers, and execution state.
Asset Topology — Query the full asset inventory, declare and remove assets, set properties, and retrieve topology graphs for any deployment.
Vulnerability Management — List exposures by severity, retrieve per-asset vulnerabilities, search the vulnerability knowledge base, and manage remediation items.
User & Access Key Management — Full CRUD on users, roles, access keys, MFA settings, and password resets across accounts.
Multi-Account MSSP Support — Per-tool
account_idoverride and bulk cross-account operations (bulk deployments, bulk health checks, partner incidents).Built-in SOC Playbooks — Six tools that surface pre-written IR guides, threat-hunt workflows, MITRE ATT&CK mappings, and tool reference guides directly in-context.
Tickets & Watchlist — Create, update, and close tickets; manage the alerting watchlist.
Cloud & Azure Explorer — Browse cloud resource topology across AWS and Azure environments.
Analytics Engine — Access AE content, rules, analytics, tags, tuning, and publication across multiple AE subsystems.
Infrastructure Operations — Manage environments, scan schedules, scan results, network controls, ingest sources, and log integrations.
Architecture
+--------------------+ stdio / streamable-HTTP (MCP) +--------------------------------+
| MCP Client | <-------------------------------------> | AlertLogic MCP Server |
| (Claude Desktop, | | (this repo, main.py) |
| Claude Code, …) | | |
+--------------------+ | 46 modules (~473 tools): |
| incidents, soc, soar, |
| assets, vuln, users, … |
| | |
| base.py (HTTP, AIMS auth, |
| token cache, retries) |
+----------+---------------------+
|
v HTTPS + AIMS Bearer token
+-----------------------------+
| AlertLogic MDR Platform |
| api.cloudinsight....com |
+-----------------------------+Transport: The server supports three MCP transports selectable via MCP_TRANSPORT:
stdio(default) — launched on demand by your MCP client; no network port opened.streamable-http— persistent HTTP server; suitable for Claude Code and remote clients.sse— Server-Sent Events transport for SSE-capable clients.
Authentication: AlertLogic uses AIMS Bearer token auth. The server exchanges your access_key_id:secret_key API key for a short-lived Bearer token on first use, caches it, and re-authenticates automatically when the token expires — no manual token rotation required.
base.py centralizes HTTP method helpers (_get, _post, _put, _delete), per-service URL routing (Account-Topology service, global service, _at-prefixed routes), error translation, and the AIMS token cache.
Prerequisites
Python 3.10 or newer
uv(recommended) orpipAn AlertLogic account with API access enabled
An AlertLogic API key (access key ID + secret key; see Configuration)
Installation
# 1. Clone the repository
git clone https://github.com/<your-org>/<repo-name>.git
cd <repo-name>
# 2. Create a virtual environment and install dependencies
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
# Or with uv (faster):
uv venv
uv pip install -r requirements.txt
# 3. Configure credentials
cp .env.example .env
$EDITOR .env # fill in the required variables (see below)Configuration
All configuration is via environment variables, loaded from .env at startup.
Required variables
Variable | Description |
| API key in |
| API base URL — |
| Your AlertLogic account ID (visible in the console URL and account settings) |
Optional variables
Variable | Default | Description |
|
| Transport: |
|
| Bind host (HTTP transports only) |
|
| Bind port (HTTP transports only) |
Optional service URL overrides
These default to AlertLogic's standard endpoints. Override only if you have a custom deployment:
ALERTLOGIC_GLOBAL_BASE_URL=https://api.global-services.global.alertlogic.com
ALERTLOGIC_AETUNER_BASE_URL=https://aetuner.mdr.global.alertlogic.com
ALERTLOGIC_CONNECTORS_BASE_URL=https://connectors.mdr.global.alertlogic.com
ALERTLOGIC_RESPONDER_BASE_URL=https://api.responder.alertlogic.comCreating an API key
Sign in to the AlertLogic console.
Navigate to Manage → Users, select your user, then open Access Keys → Create.
Copy the Access Key ID and Secret Key.
Combine them as
access_key_id:secret_key(with the colon) and set that asALERTLOGIC_API_KEY.
Claude Code Integration (HTTP mode)
Start the server in HTTP mode:
MCP_TRANSPORT=streamable-http python main.pyThen register it in your Claude Code project or user MCP config (.claude/settings.json or ~/.claude/settings.json):
{
"mcpServers": {
"alertlogic-mcp": {
"type": "http",
"url": "http://localhost:8000/mcp"
}
}
}Or via the CLI:
claude mcp add --transport http alertlogic-mcp http://localhost:8000/mcpClaude Desktop Integration (stdio mode)
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%AppData%\Claude\claude_desktop_config.json
{
"mcpServers": {
"alertlogic-mcp": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/alertlogic-mcp/main.py"]
}
}
}Use absolute paths. Tilde (
~) is not expanded by Claude Desktop. Pointcommandat the venv Python, not the system Python.
Restart Claude Desktop. AlertLogic tools will appear in the tool picker.
Module Overview
46 modules, ~473 tools, organized by domain:
Incident Response
Module | Tools | Key operations |
| 11 | List, get, friendly-ID lookup, complete, reopen, add notes, add feedback, list partner incidents |
| 14 | Submit/poll/release SQL log searches, list exposures, get health summary |
| 6 | Built-in IR guide, threat-hunt workflow, MITRE mapping, tool guides (see below) |
Asset Management
Module | Tools | Key operations |
| 15 | Query assets, get topology, declare/batch-declare/remove assets, set properties |
| 5 | Higher-level asset management and grouping |
| 12 | Browse AWS cloud resource topology by deployment |
| 13 | Browse Azure resource topology by deployment |
SOAR
Module | Tools | Key operations |
| 33 | List/get playbooks and actions, create/get/query executions, manage inquiries and triggers |
Vulnerabilities & Compliance
Module | Tools | Key operations |
| 10 | List exposures by severity, get per-asset exposures |
| 9 | Query the vulnerability knowledge base (CVE details, CVSS, remediation) |
| 4 | List remediation items, conclude/dispose/undispose remediations |
Users & Authentication
Module | Tools | Key operations |
| 30 | Full CRUD on users, roles, access keys, MFA, and password resets |
| 6 | AIMS token management, list managed accounts, account ID enumeration |
| 10 | IAM role and Azure AD credential CRUD, scan credentials, decrypted retrieval |
| 3 | Credential validation and verification |
Infrastructure & Deployments
Module | Tools | Key operations |
| 5 | List, get, create, update, delete deployments |
| 10 | Manage AlertLogic environments and environment configuration |
| 15 | Exclusion CRUD, asset checks, tag/host whitelist management |
| 13 | Create, update, and manage scan schedules per deployment |
| 4 | Retrieve and analyze scan results |
Analytics Engine
Module | Tools | Key operations |
| 11 | Manage AE content (detection content library) |
| 23 | AE flat-rule management |
| 13 | AE real-time analytics management |
| 23 | AE tag and correlation rule management |
| 1 | Publish AE analytics updates |
| 2 | Manual AE analytics operations |
| 5 | AE knowledge and analytics lifecycle management |
Ticketing & Watchlist
Module | Tools | Key operations |
| 8 | Create, get, update, list, and close tickets |
| 7 | Manage the alerting watchlist (add, remove, query items) |
Operations & Platform
Module | Tools | Key operations |
| 7 | Account details, lookup by name, parent/child relationships, topology |
| 2 | List and inspect policies |
| 12 | List and inspect subscriptions, entitlements, and billing data |
| 22 | Herald notifications, subscriptions, webhook/email connectors, endpoints |
| 6 | Manage log ingest sources and ingest configuration |
| 17 | Log source CRUD, source types, collection management |
| 7 | On-demand threat intelligence search |
| 2 | Notification dispatch |
| 2 | Log search query formatting and suggestion |
| 2 | Informant service queries |
| 10 | Strawboss job and schedule management |
| 12 | Tacoma service operations |
| 10 | Evidence and artifact management |
| 4 | Account usage statistics and reporting |
| 2 | Cross-account bulk operations (bulk deployments, bulk health checks) |
| 10 | AI-assisted search and investigation suggestions |
| — | Security Engineering: Cargo schedules/executions, AETuner analytics/tuning |
SOC Quick Start
Once connected, try these prompts in Claude:
Show me all open critical incidents from the last 24 hoursGet the elaborations (raw log evidence) for incident INC-12345Search logs for SSH login failures from 10.0.0.5 in the last hour using SQLAdd a note to incident INC-12345: Confirmed malicious, escalating to customerList all deployments and their health status across all accountsShow me the top 10 critical vulnerabilities for host web-prod-01Run the SOC IR playbook to walk me through incident response stepsBuilt-in SOC Playbooks
The soc_playbooks module provides six tools that surface curated, in-context operational guides — no external documentation lookups required:
Tool | Contents |
| End-to-end incident response workflow: triage checklist, scoping steps, containment criteria, evidence collection, and documentation requirements |
| Hypothesis-driven threat-hunting playbook: IOC-based hunts, TTP-based hunts, and log query templates for common attack patterns |
| MITRE ATT&CK tactic/technique reference mapped to AlertLogic detection types and recommended search queries |
| Quick reference for AlertLogic MCP tools organized by investigation task (triage, scoping, evidence, containment) |
| Ready-to-run SQL log query templates for common SOC scenarios: auth failures, lateral movement, C2 beaconing, data exfiltration, and more |
| Executive-ready incident summary template and field-population guidance |
These tools are designed to be called at the start of an investigation to load relevant context before querying live data.
Multi-Account MSSP Usage
The server is designed for MSSP environments where a single API key manages multiple child accounts:
Partner incident listing — incidents_list_partner returns incidents across all managed accounts in a single call, with account ownership labels.
Per-tool account override — Most tools accept an optional account_id parameter. Pass a child account's ID to scope any query to that account without changing your .env configuration:
Get all open incidents for account <child-account-id>Bulk operations — bulk_list_deployments fans out a deployments query across all managed accounts and returns aggregated results. bulk_health_check does the same for health status.
Account topology — aims_get_account_topology and aims_list_accounts_by_relationship map the parent/child account hierarchy, useful for scoping operations before running them.
Tenant isolation: When working across multiple accounts, always confirm the target account before running write operations (containment, note-adding, ticket creation). The server does not enforce cross-tenant guards beyond what the AlertLogic API provides.
Security Notes
Never commit
.env. It is excluded by.gitignore; only.env.example(with placeholders) is tracked.Treat
ALERTLOGIC_API_KEYlike a password. Rotate it immediately if you suspect exposure (chat logs, screen shares, lost device).AIMS token handling: The server exchanges your API key for a short-lived Bearer token on first use and caches it in memory. The token is refreshed automatically on expiry. The raw
secret_keyis not logged or transmitted after the initial AIMS authentication call.In
stdiomode, the server opens no network port. Instreamable-httporssemode, bind to127.0.0.1(the default) unless you specifically need remote access, in which case add appropriate network controls.base.pydoes not log request bodies, response bodies, or credential material. If you fork and add logging, take care to exclude token and secret values.This repository ships no credentials of any kind.
Testing
A standalone smoke-test script exercises a representative cross-section of tools without going through an MCP client:
python smoke_test.pyThis verifies credential validity, network reachability, and base configuration before wiring the server into your MCP client.
Troubleshooting
Confirm
ALERTLOGIC_API_KEYis the fullaccess_key_id:secret_keystring, including the colon separator.Verify
ALERTLOGIC_BASE_URLmatches your datacenter (USapi.cloudinsight.alertlogic.comvs. UKapi.cloudinsight.alertlogic.co.uk).Check that the access key is still active in the AlertLogic console (Manage → Users → Access Keys).
Confirm
ALERTLOGIC_ACCOUNT_IDis correct — a mismatch can cause 401s on account-scoped endpoints.
Use absolute paths in
claude_desktop_config.json. Tilde (~) and relative paths are not expanded.Point
commandat the virtual environment's Python (.venv/bin/python), not the system Python.Check Claude Desktop logs for stderr output from this server: macOS logs are in
~/Library/Logs/Claude/.Restart Claude Desktop fully (quit and reopen) after editing the config file.
You are running python main.py outside the virtual environment. Either activate it first (source .venv/bin/activate) or invoke the venv's Python directly (/path/to/.venv/bin/python main.py).
Make sure you started the server with MCP_TRANSPORT=streamable-http python main.py before attempting to connect. The server only binds a port when a non-stdio transport is selected.
If all tool calls return empty results or fail silently, this is often caused by an SSO or proxy layer blocking outbound API calls. Try running from a non-proxied network or a different client to confirm. Also check that ALERTLOGIC_BASE_URL and ALERTLOGIC_ACCOUNT_ID are both correct for your environment.
Contributing
PRs and issues are welcome.
Fork the repository, create a feature branch, commit your changes, and open a PR.
Add new AlertLogic endpoints as additional
@server.tooldefinitions in the matching module file undermodules/.For a new module: create
modules/<name>.pywith asetup(server)function, then add it to theMODULESlist inmain.py.Keep tool docstrings accurate and descriptive — the docstring is what the LLM sees when deciding whether and how to call the tool.
Run
python smoke_test.pybefore submitting to verify basic functionality.
Related MCP Servers
These three servers cover complementary layers of a security stack — network/log (AlertLogic), endpoint protection (Sophos), and EDR/threat intel (CrowdStrike). Use them together for full-stack AI-powered SOC operations.
Server | Platform | Highlights |
CrowdStrike Falcon | EDR telemetry, RTR, threat intel, MSSP Flight Control, 1,296 tools | |
Sophos Central | Endpoint isolation, Live Discover SQL, XDR, email/firewall/DNS, 334 tools | |
Alert Logic MDR | Incident response, SQL log search, SOAR, vulnerability management, 473 tools |
License
MIT License. See LICENSE for full text.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rijul170/alertlogic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server