wadi-mcp 0.1.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 +100 -0
  2. package/dist/server.mjs +417638 -0
  3. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "wadi-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for the Wadi house designer — check, preview, and reference the Wadi DSL (.wdl) without the repo.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "bijoor",
8
+ "homepage": "https://wadi.house",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/bijoor/wadi.git",
12
+ "directory": "wadi-mcp"
13
+ },
14
+ "keywords": [
15
+ "mcp",
16
+ "model-context-protocol",
17
+ "wadi",
18
+ "house",
19
+ "architecture",
20
+ "floor-plan",
21
+ "dsl"
22
+ ],
23
+ "engines": {
24
+ "node": ">=20"
25
+ },
26
+ "bin": {
27
+ "wadi-mcp": "dist/server.mjs"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "scripts": {
33
+ "gen-assets": "node scripts/gen-assets.mjs",
34
+ "dev": "npm run gen-assets && tsx src/server.ts",
35
+ "smoke": "npm run gen-assets && tsx scripts/smoke.mjs",
36
+ "build": "npm run gen-assets && node esbuild.mjs",
37
+ "start": "node dist/server.mjs",
38
+ "prepublishOnly": "npm run build && npm run smoke"
39
+ },
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.30.0",
42
+ "@resvg/resvg-js": "^2.6.2",
43
+ "zod": "^3.25.0"
44
+ },
45
+ "devDependencies": {
46
+ "esbuild": "^0.24.0",
47
+ "tsx": "^4.19.0"
48
+ }
49
+ }