-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathserver.json
More file actions
59 lines (59 loc) · 1.76 KB
/
server.json
File metadata and controls
59 lines (59 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.BurtTheCoder/shodan",
"description": "MCP server for Shodan API — device search, IP lookup, DNS, and CVE/CPE queries.",
"repository": {
"url": "https://github.com/BurtTheCoder/mcp-shodan",
"source": "github"
},
"version": "1.0.22",
"packages": [
{
"registryType": "npm",
"identifier": "@burtthecoder/mcp-shodan",
"version": "1.0.22",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SHODAN_API_KEY",
"description": "Your Shodan API key",
"isRequired": true,
"format": "string",
"isSecret": true
}
]
}
],
"tools": [
{
"name": "shodan_search",
"description": "Query Shodan's database of internet-connected devices with advanced search filters"
},
{
"name": "ip_lookup",
"description": "Retrieve comprehensive information about an IP address including geolocation, open ports, and services"
},
{
"name": "dns_lookup",
"description": "Resolve domain names to IP addresses using Shodan's DNS service"
},
{
"name": "reverse_dns_lookup",
"description": "Find hostnames associated with IP addresses via reverse DNS"
},
{
"name": "cve_lookup",
"description": "Query detailed CVE vulnerability information including CVSS scores, EPSS, and KEV status"
},
{
"name": "cpe_lookup",
"description": "Search for Common Platform Enumeration entries by product name"
},
{
"name": "cves_by_product",
"description": "Search for vulnerabilities affecting specific products or CPE identifiers"
}
]
}