@rsconcept/rstool-mcp 0.3.1 → 0.4.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/bin/server.js +0 -0
  2. package/package.json +11 -11
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsconcept/rstool-mcp",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "Model Context Protocol (MCP) adapter that exposes the @rsconcept/rstool RSToolAgent contract over MCP stdio. Works with Cursor, Claude Desktop, and any MCP-capable host.",
5
5
  "license": "MIT",
6
6
  "author": "IRBorisov",
@@ -40,25 +40,25 @@
40
40
  "README.md",
41
41
  "LICENSE"
42
42
  ],
43
- "scripts": {
44
- "build": "tsdown",
45
- "typecheck": "tsc -p tsconfig.json --noEmit",
46
- "test": "vitest run",
47
- "start": "tsx src/bin/server.ts",
48
- "prepublishOnly": "npm run build"
49
- },
50
43
  "dependencies": {
51
44
  "@modelcontextprotocol/sdk": "^1.29.0",
52
- "@rsconcept/rstool": "^1.0.1"
45
+ "@rsconcept/rstool": "1.2.0"
53
46
  },
54
47
  "devDependencies": {
55
48
  "@types/node": "^25.9.4",
56
49
  "tsdown": "^0.22.3",
57
- "tsx": "^4.22.4",
50
+ "tsx": "^4.22.5",
58
51
  "typescript": "^6.0.3",
52
+ "unrun": "^0.3.1",
59
53
  "vitest": "^4.1.9"
60
54
  },
61
55
  "publishConfig": {
62
56
  "access": "public"
57
+ },
58
+ "scripts": {
59
+ "build": "tsdown",
60
+ "typecheck": "tsc -p tsconfig.json --noEmit",
61
+ "test": "vitest run",
62
+ "start": "tsx src/bin/server.ts"
63
63
  }
64
- }
64
+ }