keyshot-mcp 0.9.0 → 0.10.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/CHANGELOG.md +26 -0
- package/README.md +305 -398
- package/SECURITY.md +45 -15
- package/dist/config.js +4 -2
- package/dist/diagnostics.js +25 -9
- package/dist/index.js +3 -203
- package/dist/output-collisions.js +8 -2
- package/dist/output-paths.js +4 -1
- package/dist/preview.js +138 -0
- package/dist/product-render.js +6 -2
- package/dist/result.js +82 -11
- package/dist/runner.js +17 -7
- package/dist/schemas.js +473 -137
- package/dist/server.js +252 -0
- package/dist/tools/catalog.js +210 -0
- package/dist/version.js +1 -1
- package/docs/TOOLS.md +323 -0
- package/glama.json +4 -0
- package/package.json +14 -3
- package/scripts/clean.mjs +6 -0
- package/scripts/keyshot-smoke.mjs +130 -53
- package/server.json +2 -2
- package/skills/keyshot-mcp/SKILL.md +106 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to KeyShot MCP are documented in this file.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [0.10.0] - 2026-08-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `keyshot_preview_render`, which embeds a bounded PNG preview in the MCP response.
|
|
12
|
+
- A generated 18-tool reference at `docs/TOOLS.md`.
|
|
13
|
+
- Documentation drift, formatting, Python lint, and release-integrity checks.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Tool metadata now comes from a shared catalog used by the server, tests, and documentation.
|
|
18
|
+
- The recommended workflow now includes an Agent-visible preview and user confirmation before standard or final rendering.
|
|
19
|
+
- Release automation pins MCP Publisher v1.7.9 and reports Registry failures without undoing a successful npm publication.
|
|
20
|
+
|
|
21
|
+
### Security
|
|
22
|
+
|
|
23
|
+
- Documented that scene metadata and preview images may be sent by an MCP client to its configured model provider.
|
|
24
|
+
|
|
25
|
+
[Unreleased]: https://github.com/truman-t3/keyshot-mcp/compare/v0.10.0...HEAD
|
|
26
|
+
[0.10.0]: https://github.com/truman-t3/keyshot-mcp/compare/v0.9.1...v0.10.0
|