-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmcp-registry.json
More file actions
executable file
·100 lines (100 loc) · 2.63 KB
/
mcp-registry.json
File metadata and controls
executable file
·100 lines (100 loc) · 2.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "pwndoc",
"display_name": "PwnDoc MCP Server",
"description": "Model Context Protocol server for PwnDoc penetration testing documentation. Enables AI assistants to interact with your pentest reports, findings, clients, and vulnerability templates.",
"version": "1.1.0",
"author": {
"name": "Walid Faour",
"github": "walidfaour"
},
"repository": {
"type": "git",
"url": "https://github.com/walidfaour/pwndoc-mcp-server"
},
"homepage": "https://github.com/walidfaour/pwndoc-mcp-server",
"documentation": "https://github.com/walidfaour/pwndoc-mcp-server#readme",
"license": "MIT",
"keywords": [
"mcp",
"pwndoc",
"pentest",
"penetration-testing",
"security",
"vulnerability",
"documentation",
"audit",
"report"
],
"categories": [
"security",
"documentation",
"productivity"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
},
"tool_count": 50,
"transport": ["stdio", "sse"],
"installation": {
"pip": {
"command": "pip install pwndoc-mcp-server[all]",
"package": "pwndoc-mcp-server"
},
"docker": {
"image": "ghcr.io/walidfaour/pwndoc-mcp-server",
"command": "docker pull ghcr.io/walidfaour/pwndoc-mcp-server:latest"
},
"binary": {
"platforms": ["linux-x64", "macos-x64", "windows-x64"],
"url": "https://github.com/walidfaour/pwndoc-mcp-server/releases"
}
},
"configuration": {
"required": [
{
"name": "PWNDOC_URL",
"description": "PwnDoc instance URL",
"type": "string"
}
],
"optional": [
{
"name": "PWNDOC_USERNAME",
"description": "Username for authentication",
"type": "string"
},
{
"name": "PWNDOC_PASSWORD",
"description": "Password for authentication",
"type": "string",
"secret": true
},
{
"name": "PWNDOC_TOKEN",
"description": "JWT token (alternative to username/password)",
"type": "string",
"secret": true
}
]
},
"claude_desktop_config": {
"mcpServers": {
"pwndoc": {
"command": "pwndoc-mcp",
"args": ["serve"],
"env": {
"PWNDOC_URL": "${PWNDOC_URL}",
"PWNDOC_USERNAME": "${PWNDOC_USERNAME}",
"PWNDOC_PASSWORD": "${PWNDOC_PASSWORD}"
}
}
}
},
"badges": {
"ci": "https://github.com/walidfaour/pwndoc-mcp-server/actions/workflows/ci.yml/badge.svg",
"pypi": "https://img.shields.io/pypi/v/pwndoc-mcp-server",
"license": "https://img.shields.io/github/license/walidfaour/pwndoc-mcp-server"
}
}