@tempad-dev/mcp 0.3.10 → 0.3.11
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/README.md +1 -0
- package/dist/cli.mjs +1 -1
- package/dist/hub.mjs +829 -112
- package/dist/hub.mjs.map +1 -1
- package/dist/{shared-eU-gSEEq.mjs → shared-H4sL6Ltt.mjs} +5 -5
- package/dist/shared-H4sL6Ltt.mjs.map +1 -0
- package/package.json +4 -4
- package/dist/shared-eU-gSEEq.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ Supported tools/resources:
|
|
|
29
29
|
Notes:
|
|
30
30
|
|
|
31
31
|
- Assets are ephemeral and tool-linked; `resources/list` is intentionally empty to avoid cross-session/design-file pollution. Use `resource_link` blocks from tool results and `resources/read` (or the HTTP fallback URL) to fetch bytes.
|
|
32
|
+
- The HTTP fallback URL uses `/assets/{hash}` and may include an image extension (for example `/assets/{hash}.png`). Both forms are accepted.
|
|
32
33
|
|
|
33
34
|
## Configuration
|
|
34
35
|
|
package/dist/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as SOCK_PATH, c as log, i as RUNTIME_DIR, n as LOCK_PATH, o as ensureDir, r as PACKAGE_VERSION } from "./shared-
|
|
2
|
+
import { a as SOCK_PATH, c as log, i as RUNTIME_DIR, n as LOCK_PATH, o as ensureDir, r as PACKAGE_VERSION } from "./shared-H4sL6Ltt.mjs";
|
|
3
3
|
import { spawn } from "node:child_process";
|
|
4
4
|
import { connect } from "node:net";
|
|
5
5
|
import { join } from "node:path";
|