JUHE API Marketplace
intruder-io avatar
MCP Server

intruder-mcp

MCP server to access Intruder, helping you identify, understand, and fix security vulnerabilities in your infrastructure.

19
GitHub Stars
8/23/2025
Last Updated
MCP Server Configuration
1{
2 "name": "intruder",
3 "command": "uv",
4 "args": [
5 "--directory",
6 "path/to/intruder-mcp/intruder_mcp",
7 "run",
8 "server.py"
9 ],
10 "env": {
11 "INTRUDER_API_KEY": "your-api-key"
12 }
13}
JSON13 lines

README Documentation

Intruder MCP

Let MCP clients like Claude and Cursor control Intruder. For more information and sample use cases, please see our blog post.

Installation

There are three ways to use the MCP server:

  • Through smithery
  • Locally on your machine with Python
  • In a Docker container

All of these methods require you to provide an Intruder API key. To generate a key, see the documentation.

Smithery

Follow the instructions on smithery.

Running Locally

Install uv if it isn't already present, and then clone this repository and run the following from the root directory:

uv venv
uv pip install -e .

Then, add the following to your MCP client configuration, making sure to fill in your API key, and update the path to where you have cloned this repository:

{
  "mcpServers": {
    "intruder": {
      "command": "uv",
      "args": [
        "--directory",
        "path/to/intruder-mcp/intruder_mcp",
        "run",
        "server.py"
      ],
      "env": {
        "INTRUDER_API_KEY": "your-api-key"
      }
    }
  }
}

Running in a Container

Add the following to your MCP client configuration, making sure to fill in your API key:

{
  "mcpServers": {
    "intruder": {
      "command": "docker",
      "args": [
        "container",
        "run",
        "--interactive",
        "--rm",
        "--init",
        "--env",
        "INTRUDER_API_KEY=<your-api-key>",
        "ghcr.io/intruder-io/intruder-mcp"
      ]
    }
  }
}

Quick Install

Quick Actions

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source