@receiz/mcp-server 98.0.0 → 99.0.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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +9 -8
package/dist/index.js CHANGED
@@ -559,7 +559,7 @@ export async function handleReceizMcpMessage(message, runtime = createReceizMcpR
559
559
  capabilities: { tools: {} },
560
560
  serverInfo: {
561
561
  name: "@receiz/mcp-server",
562
- version: "98.0.0",
562
+ version: "99.0.0",
563
563
  },
564
564
  authority: RECEIZ_MCP_AUTHORITY_BOUNDARY,
565
565
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@receiz/mcp-server",
3
- "version": "98.0.0",
3
+ "version": "99.0.0",
4
4
  "description": "MCP server for agents building and verifying Receiz proof-native applications through the canonical Receiz SDK rails.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,6 +19,12 @@
19
19
  "dist",
20
20
  "README.md"
21
21
  ],
22
+ "scripts": {
23
+ "build": "tsc -p tsconfig.json",
24
+ "test": "node --import tsx --test test/*.test.ts",
25
+ "typecheck": "tsc -p tsconfig.json --noEmit",
26
+ "prepack": "npm run build"
27
+ },
22
28
  "keywords": [
23
29
  "receiz",
24
30
  "mcp",
@@ -31,7 +37,7 @@
31
37
  ],
32
38
  "license": "MIT",
33
39
  "dependencies": {
34
- "@receiz/sdk": "^98.0.0"
40
+ "@receiz/sdk": "workspace:^"
35
41
  },
36
42
  "devDependencies": {
37
43
  "@types/node": "^20",
@@ -40,10 +46,5 @@
40
46
  },
41
47
  "publishConfig": {
42
48
  "access": "public"
43
- },
44
- "scripts": {
45
- "build": "tsc -p tsconfig.json",
46
- "test": "node --import tsx --test test/*.test.ts",
47
- "typecheck": "tsc -p tsconfig.json --noEmit"
48
49
  }
49
- }
50
+ }