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., "@rocketcyber-mcpShow me the latest security incidents"
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.
rocketcyber-mcp
MCP (Model Context Protocol) server for the RocketCyber Managed SOC platform. Provides read-only access to RocketCyber security data through 10 tools and 3 resources.
Features
10 read-only tools covering all RocketCyber API resources
3 MCP resources for quick data access
Dual transport: stdio (default) and HTTP Streamable
Lazy SDK initialization on first tool call
Winston logger with all output routed to stderr
Connection test tool for validating credentials
One-Click Deployment
Installation
npm install
npm run buildConfiguration
Environment Variable | Required | Default | Description |
| Yes | - | RocketCyber API key |
| No |
| API region: |
| No |
| Transport type: |
| No |
| HTTP port (when using http transport) |
| No |
| HTTP host (when using http transport) |
| No |
| Log level: |
| No |
| Log format: |
Usage
Claude Desktop (stdio)
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"rocketcyber": {
"command": "node",
"args": ["/path/to/rocketcyber-mcp/dist/entry.js"],
"env": {
"ROCKETCYBER_API_KEY": "your-api-key"
}
}
}
}HTTP Transport
ROCKETCYBER_API_KEY=your-api-key MCP_TRANSPORT=http npm startTools
Tool | Description |
| Test the connection to RocketCyber API |
| Get account information |
| List monitored agents/endpoints |
| List security incidents |
| List security events |
| Get event summary/statistics |
| List firewall devices |
| List managed apps |
| Get Windows Defender status |
| Get Office 365 status |
Resources
URI | Description |
| Account information |
| Security incidents |
| Monitored agents/endpoints |
Development
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build
npm run build
# Start production server
npm start