@lionchat/mcp-server 0.2.1 → 0.3.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/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@lionchat/mcp-server",
3
- "version": "0.2.1",
4
- "description": "MCP server for LionChat API — 547 tools for AI agents",
3
+ "version": "0.3.0",
4
+ "description": "MCP server for LionChat API — 547 tools + 4 resources + 4 prompts for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "lionchat-mcp-server": "dist/index.js"
9
9
  },
10
10
  "scripts": {
11
- "build": "tsc && chmod +x dist/index.js",
11
+ "build": "tsc && npm run copy-docs && chmod +x dist/index.js",
12
+ "copy-docs": "mkdir -p dist/docs/resources dist/docs/prompts && cp src/docs/instructions.md dist/docs/ && cp src/docs/resources/*.md dist/docs/resources/ && cp src/docs/prompts/*.json dist/docs/prompts/",
12
13
  "prepublishOnly": "npm run build",
13
14
  "start": "node dist/index.js",
14
15
  "dev": "tsc --watch",