@genart-dev/mcp-server 0.1.1 → 0.1.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/README.md CHANGED
@@ -255,6 +255,10 @@ Stored in sketch metadata to track which AI agent created or modified each sketc
255
255
  | [`@genart-dev/format`](https://github.com/genart-dev/format) | File format types, parsers, presets |
256
256
  | [`@genart-dev/core`](https://github.com/genart-dev/core) | Renderer adapters, skill registry (dependency) |
257
257
 
258
+ ## Support
259
+
260
+ Questions, bugs, or feedback — [support@genart.dev](mailto:support@genart.dev) or [open an issue](https://github.com/genart-dev/mcp-server/issues).
261
+
258
262
  ## License
259
263
 
260
264
  MIT
package/dist/index.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genart-dev/mcp-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for genart.dev — tools, resources, and prompts for generative art",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -35,6 +35,11 @@
35
35
  "dist"
36
36
  ],
37
37
  "license": "MIT",
38
+ "author": {
39
+ "name": "genart.dev",
40
+ "email": "support@genart.dev",
41
+ "url": "https://genart.dev"
42
+ },
38
43
  "repository": {
39
44
  "type": "git",
40
45
  "url": "git+https://github.com/genart-dev/mcp-server.git"
@@ -50,13 +55,6 @@
50
55
  "publishConfig": {
51
56
  "access": "public"
52
57
  },
53
- "scripts": {
54
- "build": "tsup",
55
- "test": "vitest run",
56
- "test:watch": "vitest",
57
- "clean": "rm -rf dist",
58
- "prepublishOnly": "pnpm build"
59
- },
60
58
  "dependencies": {
61
59
  "@genart-dev/core": "^0.1.0",
62
60
  "@modelcontextprotocol/sdk": "^1.12.0",
@@ -78,5 +76,11 @@
78
76
  "tsup": "^8.3.6",
79
77
  "typescript": "^5.7.3",
80
78
  "vitest": "^3.2.1"
79
+ },
80
+ "scripts": {
81
+ "build": "tsup",
82
+ "test": "vitest run",
83
+ "test:watch": "vitest",
84
+ "clean": "rm -rf dist"
81
85
  }
82
- }
86
+ }