@firfi/huly-mcp 0.43.0 → 0.44.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 (3) hide show
  1. package/README.md +25 -56
  2. package/dist/index.cjs +1208 -271
  3. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firfi/huly-mcp",
3
- "version": "0.43.0",
3
+ "version": "0.44.0",
4
4
  "description": "Huly MCP: feature-complete MCP server for Huly integration",
5
5
  "mcpName": "io.github.dearlordylord/huly-mcp",
6
6
  "type": "module",
@@ -118,12 +118,13 @@
118
118
  "check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
119
119
  "check-all": "pnpm build && pnpm typecheck && pnpm verify-schema-boundaries && pnpm circular && pnpm verify-registry-metadata && pnpm verify-sdk-parity && pnpm verify-readme && pnpm lint && pnpm test:coverage",
120
120
  "circular": "madge --extensions ts --circular src",
121
- "local-release": "pnpm dlx @changesets/cli@2.30.0 version && pnpm sync-registry-metadata && git add package.json CHANGELOG.md server.json .changeset && (git diff --cached --quiet || HUSKY=0 git commit -m \"RELEASING: Releasing 1 package(s)\") && PKG_VERSION=$(node -p \"require('./package.json').version\") && pnpm dlx esbuild@0.27.2 src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws \"--define:PKG_VERSION=\\\"$PKG_VERSION\\\"\" && pnpm verify-version && npm_config_ignore_scripts=true pnpm dlx @changesets/cli@2.30.0 publish && git push origin \"v$PKG_VERSION\" && gh release create \"v$PKG_VERSION\" --generate-notes --latest",
121
+ "local-release": "bash scripts/local_release.sh",
122
122
  "verify-version": "node -e \"const v=require('./package.json').version; const d=require('fs').readFileSync('dist/index.cjs','utf8'); if(!d.includes('\\\"'+v+'\\\"'))throw new Error('dist version mismatch: expected '+v)\"",
123
123
  "verify-registry-metadata": "node scripts/sync-registry-metadata.mjs --check",
124
124
  "verify-schema-boundaries": "node scripts/verify-schema-boundaries.mjs",
125
125
  "verify-sdk-parity": "node scripts/audit-sdk-parity.mjs",
126
126
  "smoke:http-no-config": "node scripts/smoke-http-no-config.mjs",
127
+ "integration:tool-scope": "bash scripts/integration_test_tool_scope.sh",
127
128
  "sync-registry-metadata": "node scripts/sync-registry-metadata.mjs",
128
129
  "update-readme": "tsx scripts/update-readme-tools.mjs",
129
130
  "verify-readme": "tsx scripts/update-readme-tools.mjs --check"