rapid7-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., "@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 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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/el95149/rapid7-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server