@moor-sh/mcp 0.27.1 → 0.27.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@moor-sh/mcp",
3
- "version": "0.27.1",
3
+ "version": "0.27.2",
4
4
  "description": "MCP server for moor - lets AI agents (Claude Code, Cursor, etc.) manage your moor projects via the moor HTTP API.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -19,17 +19,21 @@
19
19
  ],
20
20
  "type": "module",
21
21
  "bin": {
22
- "moor-mcp": "src/index.ts"
22
+ "moor-mcp": "bin/moor-mcp.js"
23
23
  },
24
24
  "files": [
25
- "src/"
25
+ "bin/",
26
+ "dist/"
26
27
  ],
27
28
  "publishConfig": {
28
29
  "access": "public"
29
30
  },
30
31
  "scripts": {
31
32
  "dev": "bun run src/index.ts",
32
- "build": "bun build src/index.ts --compile --outfile moor-mcp"
33
+ "docs": "bun run scripts/generate-tool-docs.ts",
34
+ "build": "bun build src/index.ts --compile --outfile moor-mcp",
35
+ "build:package": "bun build src/index.ts --target bun --outfile dist/index.js --external @cfworker/json-schema --external @modelcontextprotocol/server --external zod",
36
+ "prepack": "bun run build:package"
33
37
  },
34
38
  "dependencies": {
35
39
  "@cfworker/json-schema": "^4.1.1",