PluginBench
MCP Server
Maintained
MIT

io.github.BurtTheCoder/shodan MCP Server

io.github.BurtTheCoder/shodan

What is the io.github.BurtTheCoder/shodan MCP server?

MCP server for Shodan API — device search, IP lookup, DNS, and CVE/CPE queries.

How to install io.github.BurtTheCoder/shodan

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SHODAN_API_KEY
    required
    secret

    Your Shodan API key

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "shodan": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-shodan"
      ],
      "env": {
        "SHODAN_API_KEY": "<YOUR_SHODAN_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "shodan": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-shodan"
      ],
      "env": {
        "SHODAN_API_KEY": "<YOUR_SHODAN_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "shodan": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-shodan"
      ],
      "env": {
        "SHODAN_API_KEY": "<YOUR_SHODAN_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "shodan": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-shodan"
      ],
      "env": {
        "SHODAN_API_KEY": "<YOUR_SHODAN_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add shodan --env SHODAN_API_KEY=<YOUR_SHODAN_API_KEY> -- npx -y @burtthecoder/mcp-shodan

Related MCP servers

MCP server for querying VirusTotal API with comprehensive security analysis tools.

134
TypeScript
MIT
View repository →
io.github.BurtTheCoder/shodan MCP Server | PluginBench