@ebowwa/mcp-nm 1.0.2 → 1.1.0

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.
Files changed (4) hide show
  1. package/dist/index.js +4433 -9723
  2. package/package.json +8 -4
  3. package/src/index.ts +976 -393
  4. package/bun.lock +0 -233
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ebowwa/mcp-nm",
3
- "version": "1.0.2",
4
- "description": "Binary symbol analysis MCP server using nm tool - analyze exports, imports, and symbols in ELF/Mach-O binaries",
3
+ "version": "1.1.0",
4
+ "description": "Binary analysis MCP server using nm (symbols) and xxd (hex dumps) - analyze ELF/Mach-O binaries, create hex dumps, extract bytes, and search patterns",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -17,8 +17,11 @@
17
17
  "keywords": [
18
18
  "mcp",
19
19
  "nm",
20
+ "xxd",
20
21
  "binary",
21
22
  "symbols",
23
+ "hex",
24
+ "hexdump",
22
25
  "elf",
23
26
  "mach-o",
24
27
  "analysis",
@@ -41,8 +44,9 @@
41
44
  "ownership": {
42
45
  "domain": "mcp",
43
46
  "responsibilities": [
44
- "network-manager-mcp",
45
- "network-configuration"
47
+ "binary-analysis",
48
+ "hex-dump",
49
+ "symbol-analysis"
46
50
  ]
47
51
  }
48
52
  }