rapid7-mcp-server
Click on "Deploy 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., "@rapid7-mcp-servershow failed login events from 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.
Rapid7 MCP Server
A Model Context Protocol (MCP) server that provides access to Rapid7 InsightIDR log querying capabilities through AI assistants.
Features
Query Rapid7 InsightIDR logs using natural language through AI assistants
Support for time-based log filtering with ISO8601 datetime format
Configurable pagination and logset targeting
Optional query filtering with LEQL (Log Entry Query Language)
Automatic datetime conversion from ISO8601 to UNIX timestamps
List available logsets and query by name
Poll running query status
Related MCP server: LogScale MCP Server
Installation
Clone or download this repository
Install dependencies:
npm install
Testing (TLDR)
# Run all tests
npm testTests use mocked API calls - no real API keys needed.
Configuration
You'll need:
A valid Rapid7 InsightIDR API key
Access to the Rapid7 EU region (or modify the URL for other regions)
The logset ID you want to query (or use the listRapid7Logsets tool to discover them)
MCP Client Configuration
To use this server with MCP-compatible applications, you need to configure them with the server path and required environment variables.
Environment Variables
RAPID7_API_KEY: Your Rapid7 InsightIDR API key (required)
RAPID7_BASE_URL: The Rapid7 API base URL (optional, defaults to EU region)
Configuration Example
Add this configuration to your MCP config file:
{
"mcpServers": {
"rapid7": {
"command": "node",
"args": [
"/path/to/your/rapid7-mcp-server/mcp-server.js"
],
"env": {
"RAPID7_API_KEY": "your-api-key-here",
"RAPID7_BASE_URL": "https://eu.rest.logs.insight.rapid7.com"
}
}
}
}Regional Configuration
For different Rapid7 regions, update the RAPID7_BASE_URL:
EU:
https://eu.rest.logs.insight.rapid7.com(default)US:
https://us.rest.logs.insight.rapid7.comCA:
https://ca.rest.logs.insight.rapid7.comAU:
https://au.rest.logs.insight.rapid7.comAP:
https://ap.rest.logs.insight.rapid7.com
Security Notes
Never commit your API key to version control
Store API keys securely using your system's credential management
Consider using environment variables or secure vaults for production deployments
Ensure your API key has appropriate permissions for log querying
Usage
Running the Server
node mcp-server.jsUsing with MCP Inspector
For testing and development:
npm run inspectorAvailable Tools
1. queryRapid7Logset
Query Rapid7 logs with specified parameters for an entire log set using logset ID.
Parameters
from (string, required): Start datetime in ISO8601 format (e.g., "2024-01-15T10:00:00Z")
to (string, required): End datetime in ISO8601 format (e.g., "2024-01-15T11:00:00Z")
perPage (number, optional): Number of results per page (default: 100)
logsetId (string, required): The Rapid7 logset ID to query
query (string, optional): LEQL query string for filtering logs
Example Usage
{
"from": "2024-01-15T10:00:00Z",
"to": "2024-01-15T11:00:00Z",
"perPage": 50,
"logsetId": "your-logset-id",
"query": "where(source_ip=192.168.1.1)"
}2. queryRapid7LogsetByName
Query Rapid7 logs with specified parameters for a logset identified by name instead of ID.
Parameters
logsetName (string, required): Name of the logset to query
from (string, required): Start datetime in ISO8601 format (e.g., "2024-01-15T10:00:00Z")
to (string, required): End datetime in ISO8601 format (e.g., "2024-01-15T11:00:00Z")
perPage (number, optional): Number of results per page (default: 100)
query (string, optional): LEQL query string for filtering logs
Example Usage
{
"logsetName": "Security Events",
"from": "2024-01-15T10:00:00Z",
"to": "2024-01-15T11:00:00Z",
"perPage": 100,
"query": "where(\"failed login\", loose)"
}3. listRapid7Logsets
List all available Rapid7 log sets in your account. Useful for discovering logset names and IDs.
Parameters
None required.
Example Usage
{}Response
Returns a list of all available logsets with their IDs, names, and descriptions.
4. pollRapid7Query
Poll the status of a running Rapid7 log query using its query ID. Useful for long-running queries.
Parameters
queryId (string, required): The unique ID of the query to poll (as returned by query tools)
timeRange (string, optional): Time range (e.g., 'last 1 day', 'last 7 days'). Defaults to 'last 1 day'
Example Usage
{
"queryId": "query-12345-abcdef",
"timeRange": "last 7 days"
}Common Response Format
All tools return JSON-formatted data from Rapid7 InsightIDR, including:
Log entries matching your criteria
Metadata about the query execution
Pagination information if applicable
Query status for polling operations
Error Handling
The server includes comprehensive error handling for:
Invalid datetime formats
API authentication failures
Network connectivity issues
Malformed responses
Empty or invalid parameters
Missing environment variables
API Endpoints
This server connects to the Rapid7 EU REST API:
Base URL:
https://eu.rest.logs.insight.rapid7.comQuery logset by ID:
/query/logsets/{logsetId}Query logset by name:
/query/logsetsList logsets:
/management/logsetsPoll query:
/query/{queryId}
To use a different region, modify the URL in mcp-server.js.
Development
Project Structure
rapid7-mcp-server/
├── mcp-server.js # Main server implementation
├── package.json # Dependencies and scripts
└── README.md # This fileDependencies
@modelcontextprotocol/sdk: MCP SDK for server implementationnode-fetch: HTTP client for API requestszod: Schema validation for tool parameters
License
MIT License
This project is licensed under the MIT License, one of the most permissive open source licenses available. You are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
Support
For issues related to:
This MCP server: Create an issue in this repository
Rapid7 InsightIDR API: Consult the Rapid7 API documentation
MCP protocol: Check the Model Context Protocol documentation
This server cannot be deployed
Maintenance
Related MCP Connectors
Ask data questions in natural language. Get SQL, insights, and charts from your databases.
Search log events, investigate anomalies, and manage cases in your Knowledge Grid tenant.
Your Databricks Lakehouse in natural language: run SQL on your SQL warehouses, track long-running qu
Query your SEO data in plain language: rankings, audits, backlinks, competitors and AI visibility.
Related MCP Servers
- AlicenseDqualityAmaintenanceIntegrates AI assistants with Graylog to query and analyze log data using Elasticsearch syntax and stream-specific filtering. It enables users to perform advanced searches, retrieve log statistics, and manage Graylog streams through natural language.912MIT
- AlicenseNot gradedqualityDmaintenanceQuery CrowdStrike Falcon LogScale logs from AI assistants via the Model Context Protocol.2MIT
- AlicenseAqualityFmaintenanceEnables AI assistants to interact with Rapid7 InsightIDR SIEM for investigating incidents, searching logs with LEQL, managing alerts and assets, analyzing user behavior, and handling threat intelligence.266 npm4MIT
- AlicenseNot gradedqualityDmaintenanceEnables natural language interaction with SumoLogic for log management and analytics, with contextual awareness through a configuration file that maps your environment.Apache 2.0