Huntress-MCP-Server

by DynamicEndpoints

1 stars
178 downloads
Not rated
GitHub

About

Integrates with Huntress endpoint protection services to manage cybersecurity operations, threat analysis, and automated reporting.

Details

Author
DynamicEndpoints
GitHub stars
1
Downloads
178
Categories
Developer Tools, API, Cloud Service, Infrastructure, Productivity, Design, AI, Frontend, Automation

- Account information retrieval
- Organization management
- Agent management and monitoring
- Incident report access
- Summary and billing report generation
- Built‑in rate limiting (60 requests/minute)

Setting up with Highlight

Follow these steps to add this server as a custom Highlight plugin:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Huntress-MCP-Server
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 @highlight/mcp-server

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, install dependencies with npm install, create a .env file with your Huntress API key and secret, then build the server with npm run build. Configure it in your MCP settings by adding a huntress entry with the command node, the path to the built index.js, and the required environment variables.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "huntress-mcp-server": {
            "env": {},
            "args": [
                "-y",
                "@highlight/mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": [],
    "args": [
        "/c",
        "npx",
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "cmd"
}

Huntress API MCP Server

A Model Context Protocol (MCP) server that provides tools for interacting with the Huntress API. This server enables programmatic access to Huntress functionality including account management, organization management, agent management, incident reports, and more.

Features

- Account information retrieval
- Organization management
- Agent management and monitoring
- Incident report access
- Summary report generation
- Billing report access
- Built-in rate limiting (60 requests per minute)
- Error handling and response formatting

Installation

1. Clone the repository
2. Install dependencies:

npm install

3. Create a .env file based on .env.example:
HUNTRESS_API_KEY=your_api_key_here
HUNTRESS_API_SECRET=your_api_secret_here

4. Build the server:
npm run build

Available Tools

Account Management

- get_account_info: Get information about the current account

Organization Management

- list_organizations: List organizations in the account - get_organization: Get details of a specific organization

Agent Management

- list_agents: List agents in the account - get_agent: Get details of a specific agent

Incident Reports

- list_incident_reports: List incident reports - get_incident_report: Get details of a specific incident report

Summary Reports

- list_summary_reports: List summary reports - get_summary_report: Get details of a specific summary report

Billing Reports

- list_billing_reports: List billing reports - get_billing_report: Get details of a specific billing report

Configuration

The server requires the following environment variables:

- HUNTRESS_API_KEY: Your Huntress API Key
- HUNTRESS_API_SECRET: Your Huntress API Secret Key

These can be obtained from your Huntress account at <your_account_subdomain>.huntress.io under API Credentials.

Usage with MCP

Add the following configuration to your MCP settings:

{
  "mcpServers": {
    "huntress": {
      "command": "node",
      "args": ["path/to/huntress-server/build/index.js"],
      "env": {
        "HUNTRESS_API_KEY": "your_api_key_here",
        "HUNTRESS_API_SECRET": "your_api_secret_here"
      }
    }
  }
}

Rate Limiting

The server implements Huntress API's rate limiting of 60 requests per minute on a sliding window. This means:
- No more than 60 requests can be made within any 60-second period
- The window slides, so if request 1 is made at T0 and request 60 at T30, request 61 must wait until T60

Error Handling

The server handles various error scenarios:
- Invalid API credentials
- Rate limit exceeded
- Invalid request parameters
- API response errors

License

MIT License - See LICENSE file for details

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.