@signet-auth/mcp-tools 0.4.6 → 0.5.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.
package/dist/tools.js CHANGED
@@ -8,7 +8,7 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
8
8
  import { CallToolRequestSchema, ListToolsRequestSchema, } from '@modelcontextprotocol/sdk/types.js';
9
9
  import { generateKeypair, sign, verifyAny, contentHash, } from '@signet-auth/core';
10
10
  export function createSignetToolsServer() {
11
- const server = new Server({ name: 'signet-mcp-tools', version: '0.4.6' }, { capabilities: { tools: {} } });
11
+ const server = new Server({ name: 'signet-mcp-tools', version: '0.5.0' }, { capabilities: { tools: {} } });
12
12
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
13
13
  tools: [
14
14
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signet-auth/mcp-tools",
3
- "version": "0.4.6",
3
+ "version": "0.5.0",
4
4
  "description": "Standalone MCP server exposing Signet signing, verification, and content hash tools",
5
5
  "keywords": [
6
6
  "mcp",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@modelcontextprotocol/sdk": "^1.10.0",
43
- "@signet-auth/core": "^0.4.6"
43
+ "@signet-auth/core": "^0.5.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/node": "^22",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.prismer-ai/signet-mcp-tools",
4
4
  "title": "Signet MCP Tools",
5
5
  "description": "MCP server exposing Signet cryptographic signing, verification, and content hash tools over stdio.",
6
- "version": "0.4.6",
6
+ "version": "0.5.0",
7
7
  "repository": {
8
8
  "url": "https://github.com/Prismer-AI/signet",
9
9
  "source": "github"
@@ -12,7 +12,7 @@
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@signet-auth/mcp-tools",
15
- "version": "0.4.6",
15
+ "version": "0.5.0",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }