@signet-auth/mcp-tools 0.4.4 → 0.4.5

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 (2) hide show
  1. package/README.md +24 -5
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -2,7 +2,22 @@
2
2
 
3
3
  <!-- mcp-name: io.github.prismer-ai/signet-mcp-tools -->
4
4
 
5
- Standalone MCP server exposing Signet cryptographic tools over `stdio`.
5
+ Standalone MCP server exposing Signet cryptographic tools over `stdio`. Use it from any MCP-compatible client without embedding Signet directly into your app.
6
+
7
+ [![npm](https://img.shields.io/npm/v/@signet-auth/mcp-tools?style=flat-square)](https://www.npmjs.com/package/@signet-auth/mcp-tools)
8
+ [![GitHub Stars](https://img.shields.io/github/stars/Prismer-AI/signet?style=flat-square&color=yellow)](https://github.com/Prismer-AI/signet)
9
+
10
+ Best for:
11
+
12
+ - Plugging Signet into Claude, Codex, or any MCP-compatible client
13
+ - Running signing and verification as an external tool server
14
+ - Quick experiments that need Signet over `stdio`
15
+
16
+ Use another package if:
17
+
18
+ - You want to embed Signet directly into app code: [`@signet-auth/core`](https://www.npmjs.com/package/@signet-auth/core)
19
+ - You want client-side MCP transport signing: [`@signet-auth/mcp`](https://www.npmjs.com/package/@signet-auth/mcp)
20
+ - You want server-side execution-boundary verification: [`@signet-auth/mcp-server`](https://www.npmjs.com/package/@signet-auth/mcp-server)
6
21
 
7
22
  ## Tools
8
23
 
@@ -11,15 +26,16 @@ Standalone MCP server exposing Signet cryptographic tools over `stdio`.
11
26
  - `signet_verify`: Verify a Signet receipt against a public key.
12
27
  - `signet_content_hash`: Compute the canonical SHA-256 content hash for JSON input.
13
28
 
14
- ## Install
29
+ ## Quick start
15
30
 
16
31
  ```bash
17
- npm install -g @signet-auth/mcp-tools
32
+ npx @signet-auth/mcp-tools
18
33
  ```
19
34
 
20
- ## Run
35
+ Or install globally:
21
36
 
22
37
  ```bash
38
+ npm install -g @signet-auth/mcp-tools
23
39
  signet-mcp-tools
24
40
  ```
25
41
 
@@ -48,8 +64,11 @@ io.github.prismer-ai/signet-mcp-tools
48
64
 
49
65
  The registry manifest is in [server.json](./server.json).
50
66
 
51
- ## Links
67
+ ## Related packages
52
68
 
69
+ - [`@signet-auth/core`](https://www.npmjs.com/package/@signet-auth/core) — lower-level signing and verification primitives
70
+ - [`@signet-auth/mcp`](https://www.npmjs.com/package/@signet-auth/mcp) — sign outbound MCP requests on the client side
71
+ - [`@signet-auth/mcp-server`](https://www.npmjs.com/package/@signet-auth/mcp-server) — verify requests before execution on the server side
53
72
  - [Full documentation & all SDKs](https://github.com/Prismer-AI/signet)
54
73
 
55
74
  If Signet is useful to you, [star us on GitHub](https://github.com/Prismer-AI/signet) — it helps others discover the project.
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@signet-auth/mcp-tools",
3
- "version": "0.4.4",
4
- "description": "MCP server exposing Signet cryptographic signing, verification, and audit tools",
3
+ "version": "0.4.5",
4
+ "description": "Standalone MCP server exposing Signet signing, verification, and content hash tools",
5
5
  "keywords": [
6
6
  "mcp",
7
7
  "model-context-protocol",
8
8
  "signet",
9
9
  "signing",
10
- "audit",
10
+ "verification",
11
+ "content-hash",
11
12
  "cryptography"
12
13
  ],
13
14
  "homepage": "https://github.com/Prismer-AI/signet/tree/main/packages/signet-mcp-tools#readme",
@@ -35,7 +36,7 @@
35
36
  },
36
37
  "dependencies": {
37
38
  "@modelcontextprotocol/sdk": "^1.10.0",
38
- "@signet-auth/core": "^0.4.4"
39
+ "@signet-auth/core": "^0.4.5"
39
40
  },
40
41
  "devDependencies": {
41
42
  "@types/node": "^22",