@movable/ui-mcp 1.0.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/README.md +158 -0
- package/data/categories.json +49 -0
- package/data/components.json +218 -0
- package/data/eslint-rules.json +7 -0
- package/data/stories.json +800 -0
- package/data/theme.json +68 -0
- package/data/tokens.json +892 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +667 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@movable/ui-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server for @movable/ui component library - run via npx",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"movable-ui-mcp": "./dist/index.js",
|
|
9
|
+
"ui-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"data"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"extract-data": "tsx scripts/extract-data.ts",
|
|
17
|
+
"prebuild": "npm run extract-data",
|
|
18
|
+
"build": "tsc",
|
|
19
|
+
"dev": "tsc --watch",
|
|
20
|
+
"start": "node dist/index.js",
|
|
21
|
+
"prepublishOnly": "npm run build"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/movableink/ui.git",
|
|
26
|
+
"directory": "mcp-server"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"mcp",
|
|
30
|
+
"model-context-protocol",
|
|
31
|
+
"movable-ink",
|
|
32
|
+
"movable",
|
|
33
|
+
"ui",
|
|
34
|
+
"claude",
|
|
35
|
+
"ai-assistant",
|
|
36
|
+
"claude-code",
|
|
37
|
+
"cursor"
|
|
38
|
+
],
|
|
39
|
+
"author": "Movable Ink <dev@movableink.com>",
|
|
40
|
+
"license": "ISC",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/movableink/ui/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/movableink/ui/tree/main/mcp-server#readme",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
50
|
+
"glob": "^11.0.0",
|
|
51
|
+
"zod": "^3.23.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^22.0.0",
|
|
55
|
+
"tsx": "^4.21.0",
|
|
56
|
+
"typescript": "^5.9.3"
|
|
57
|
+
}
|
|
58
|
+
}
|