@normahq/mcp-dump-linux-arm64 0.0.2

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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Alexey Samoylov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # mcp-dump
2
+
3
+ `mcp-dump` inspects any stdio MCP server command and prints initialize/capability data.
4
+
5
+ ## Installation
6
+
7
+ Global install (distributed via npm):
8
+
9
+ ```bash
10
+ npm install -g @normahq/mcp-dump@latest
11
+ ```
12
+
13
+ One-off run with npx (no global install):
14
+
15
+ ```bash
16
+ npx @normahq/mcp-dump@latest -- <mcp-server-cmd> [args...]
17
+ ```
18
+
19
+ ## Run
20
+
21
+ ```bash
22
+ mcp-dump -- <mcp-server-cmd> [args...]
23
+ ```
24
+
25
+ Examples:
26
+
27
+ ```bash
28
+ mcp-dump -- codex mcp-server
29
+ mcp-dump --json -- codex mcp-server
30
+ ```
31
+
32
+ ## Flags
33
+
34
+ - `--json`: print machine-readable JSON output.
35
+ - `--debug`: enable debug logs for the inspector.
36
+
37
+ ## Output
38
+
39
+ Human-readable output includes:
40
+
41
+ - server name/version
42
+ - protocol version
43
+ - server capabilities
44
+ - tools list (with input params and response schemas)
45
+ - prompts/resources/resource templates status
46
+
47
+ ## Notes
48
+
49
+ - `--` is required. Arguments before `--` are rejected.
50
+ - By default, command output is result-focused (no inspector debug/info logs).
51
+
52
+ ## Repository
53
+
54
+ - Norma GitHub: <https://github.com/normahq/norma>
55
+
56
+ ## Contact
57
+
58
+ - Issues: <https://github.com/normahq/norma/issues>
59
+ - Maintainer: [@metalagman](https://github.com/metalagman)
60
+
61
+ ## License
62
+
63
+ MIT. See the repository [LICENSE](https://github.com/normahq/norma/blob/main/LICENSE).
package/bin/mcp-dump ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "bin": {
3
+ "mcp-dump": "bin/mcp-dump"
4
+ },
5
+ "cpu": [
6
+ "arm64"
7
+ ],
8
+ "description": "@normahq/mcp-dump binary for linux/arm64",
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "license": "SEE LICENSE IN LICENSE",
15
+ "name": "@normahq/mcp-dump-linux-arm64",
16
+ "os": [
17
+ "linux"
18
+ ],
19
+ "version": "0.0.2"
20
+ }