@rynko/mcp-server 1.0.7 → 1.0.8

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 +4 -2
package/dist/index.js CHANGED
@@ -52,7 +52,7 @@ const client = new RynkoClient(RYNKO_USER_TOKEN, RYNKO_API_URL);
52
52
  // Create MCP server
53
53
  const server = new Server({
54
54
  name: 'rynko-mcp',
55
- version: '1.0.7',
55
+ version: '1.0.8',
56
56
  }, {
57
57
  capabilities: {
58
58
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rynko/mcp-server",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "description": "Rynko MCP server for Claude Desktop - manage templates and generate documents through natural conversation",
6
6
  "main": "dist/index.js",
@@ -16,9 +16,10 @@
16
16
  "build": "tsc",
17
17
  "dev": "tsc --watch",
18
18
  "start": "node dist/index.js",
19
+ "bundle": "node scripts/bundle.mjs",
19
20
  "prepublishOnly": "npm run build",
20
21
  "lint": "eslint src --ext .ts",
21
- "clean": "rimraf dist",
22
+ "clean": "rimraf dist dist-bundle",
22
23
  "build:mcpb": "bash scripts/build-mcpb.sh"
23
24
  },
24
25
  "keywords": [
@@ -49,6 +50,7 @@
49
50
  },
50
51
  "devDependencies": {
51
52
  "@types/node": "^20.10.0",
53
+ "esbuild": "^0.20.0",
52
54
  "rimraf": "^5.0.5",
53
55
  "typescript": "^5.3.0"
54
56
  }