hacktricks-mcp-server 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ {
2
+ "mcpServers": {
3
+ "hacktricks": {
4
+ "command": "node",
5
+ "args": ["/path/to/hacktricks-mcp/dist/index.js"],
6
+ "disabled": false
7
+ }
8
+ }
9
+ }
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "hacktricks-mcp-server",
3
+ "version": "1.3.1",
4
+ "description": "MCP server for searching HackTricks documentation",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "mcpName": "io.github.xplo8e/hacktricks-mcp-server",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Xplo8E/hacktricks-mcp-server.git"
11
+ },
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "dev": "tsc --watch",
15
+ "start": "node dist/index.js"
16
+ },
17
+ "keywords": [
18
+ "mcp",
19
+ "hacktricks",
20
+ "pentesting",
21
+ "security"
22
+ ],
23
+ "author": "Xplo8E",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "@modelcontextprotocol/sdk": "^1.0.0"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "^22.0.0",
30
+ "typescript": "^5.7.0"
31
+ }
32
+ }
package/server.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.xplo8e/hacktricks-mcp-server",
4
+ "title": "HackTricks MCP Server",
5
+ "description": "Search and query HackTricks pentesting documentation with quick lookup and section extraction",
6
+ "version": "1.3.0",
7
+ "websiteUrl": "https://github.com/Xplo8E/hacktricks-mcp-server",
8
+ "repository": {
9
+ "url": "https://github.com/Xplo8E/hacktricks-mcp-server.git",
10
+ "source": "github"
11
+ },
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "identifier": "hacktricks-mcp-server",
16
+ "transport": {
17
+ "type": "stdio"
18
+ }
19
+ }
20
+ ]
21
+ }