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_KEYrequiredsecretYour 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-shodanRelated MCP servers
io.github.BurtTheCoder/virustotal
Maintained
MCP server for querying VirusTotal API with comprehensive security analysis tools.
134
View repository →TypeScript
MIT