-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.83 KB
/
Copy pathserver.json
File metadata and controls
58 lines (58 loc) · 1.83 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.setuidloot/metasploit-mcp",
"description": "Metasploit MCP Server - controlled access to Metasploit Framework functionality (exploits, payloads, sessions, listeners) via the Model Context Protocol.",
"version": "3.1.0",
"repository": {
"url": "https://github.com/setuidloot/MetasploitMCP",
"source": "github"
},
"packages": [
{
"registry_type": "pypi",
"registry_base_url": "https://pypi.org",
"identifier": "metasploit-mcp",
"version": "3.1.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"name": "MSF_PASSWORD",
"description": "Password for the Metasploit RPC service (msfrpcd -P ...).",
"is_required": true,
"is_secret": true
},
{
"name": "MSF_SERVER",
"description": "Host of the Metasploit RPC service.",
"is_required": false,
"default": "127.0.0.1"
},
{
"name": "MSF_PORT",
"description": "Port of the Metasploit RPC service.",
"is_required": false,
"default": "55553"
},
{
"name": "MSF_SSL",
"description": "Whether the Metasploit RPC service uses SSL ('true' or 'false').",
"is_required": false,
"default": "false"
},
{
"name": "MSF_RPC_PROTOCOL",
"description": "RPC serialization protocol: 'msgpack' (default) or 'jsonrpc'.",
"is_required": false,
"default": "msgpack"
},
{
"name": "PAYLOAD_SAVE_DIR",
"description": "Directory where generated payloads are written (defaults to ~/payloads).",
"is_required": false
}
]
}
]
}