@dadaki/mcp 1.0.0-beta.1

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 +273 -0
  2. package/dist/index.js +25663 -0
  3. package/package.json +56 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@dadaki/mcp",
3
+ "version": "1.0.0-beta.1",
4
+ "description": "MCP server that lets an agent author vector artwork in Dadaki — intent-level drawing verbs plus render-back so the agent can see its own work.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "homepage": "https://dadaki.com",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/rebasepro/dadaki.git",
11
+ "directory": "packages/mcp"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/rebasepro/dadaki/issues"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "vector",
20
+ "svg",
21
+ "design",
22
+ "illustration",
23
+ "dadaki"
24
+ ],
25
+ "bin": {
26
+ "dadaki-mcp": "./dist/index.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md"
31
+ ],
32
+ "engines": {
33
+ "node": ">=20.19.0"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "scripts": {
39
+ "build": "node build.mjs",
40
+ "prepack": "node build.mjs",
41
+ "start": "node --experimental-strip-types src/index.ts",
42
+ "start:bridge": "node --experimental-strip-types src/index.ts --mode bridge",
43
+ "smoke": "node --experimental-strip-types smoke.ts",
44
+ "smoke:bridge": "node --experimental-strip-types smoke_bridge.ts",
45
+ "smoke:modes": "node --experimental-strip-types smoke_modes.ts",
46
+ "smoke:relay": "node smoke_relay.mjs"
47
+ },
48
+ "devDependencies": {
49
+ "@modelcontextprotocol/sdk": "^1.22.0",
50
+ "@types/ws": "^8.5.13",
51
+ "esbuild": "^0.28.2",
52
+ "puppeteer": "^25.3.0",
53
+ "ws": "^8.18.0",
54
+ "zod": "^3.25.0"
55
+ }
56
+ }