@decantr/mcp-server 1.0.2 → 1.0.3
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 +61 -0
- package/package.json +17 -1
package/README.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# @decantr/mcp-server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@decantr/mcp-server)
|
|
4
|
+
[](https://www.npmjs.com/package/@decantr/mcp-server)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
[](https://modelcontextprotocol.io)
|
|
7
|
+
|
|
3
8
|
Support status: `core-supported`
|
|
4
9
|
Release channel: `stable`
|
|
5
10
|
|
|
6
11
|
Design intelligence for AI-generated UI. Make Claude, Cursor, and Windsurf generate better code.
|
|
7
12
|
|
|
13
|
+
<!-- demo-slot: embed asciinema cast or short GIF here once recorded -->
|
|
14
|
+
<!-- e.g. [](https://asciinema.org/a/XXXXXX) -->
|
|
15
|
+
|
|
16
|
+
|
|
8
17
|
- **Structured design context** -- gives your AI assistant patterns, layouts, and component specs instead of letting it guess
|
|
9
18
|
- **Drift detection** -- catches when generated code deviates from your design intent
|
|
10
19
|
- **Zero config** -- run with `npx`, no API keys or accounts required
|
|
@@ -60,6 +69,58 @@ Add to your Windsurf MCP config (`~/.windsurf/mcp.json`):
|
|
|
60
69
|
}
|
|
61
70
|
```
|
|
62
71
|
|
|
72
|
+
### VS Code
|
|
73
|
+
|
|
74
|
+
Create `.vscode/mcp.json` in your workspace (or add to your user profile `mcp.json`):
|
|
75
|
+
|
|
76
|
+
```json
|
|
77
|
+
{
|
|
78
|
+
"servers": {
|
|
79
|
+
"decantr": {
|
|
80
|
+
"command": "npx",
|
|
81
|
+
"args": ["-y", "@decantr/mcp-server"]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
MCP tools are available in VS Code Copilot Chat agent mode.
|
|
88
|
+
|
|
89
|
+
### Zed
|
|
90
|
+
|
|
91
|
+
Add to your Zed `settings.json`:
|
|
92
|
+
|
|
93
|
+
```json
|
|
94
|
+
{
|
|
95
|
+
"context_servers": {
|
|
96
|
+
"decantr": {
|
|
97
|
+
"command": "npx",
|
|
98
|
+
"args": ["-y", "@decantr/mcp-server"],
|
|
99
|
+
"env": {}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### Continue.dev
|
|
106
|
+
|
|
107
|
+
Create `.continue/mcpServers/decantr.yaml` in your workspace:
|
|
108
|
+
|
|
109
|
+
```yaml
|
|
110
|
+
name: Decantr MCP Server
|
|
111
|
+
version: 0.0.1
|
|
112
|
+
schema: v1
|
|
113
|
+
mcpServers:
|
|
114
|
+
- name: Decantr
|
|
115
|
+
type: stdio
|
|
116
|
+
command: npx
|
|
117
|
+
args:
|
|
118
|
+
- "-y"
|
|
119
|
+
- "@decantr/mcp-server"
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
MCP tools are only available in Continue.dev agent mode.
|
|
123
|
+
|
|
63
124
|
## Key Tools
|
|
64
125
|
|
|
65
126
|
The server exposes Decantr registry, context, benchmark, and verification tools. Highlights:
|
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decantr/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"mcpName": "io.github.decantr-ai/mcp-server",
|
|
4
5
|
"description": "MCP server for Decantr — exposes design intelligence, packs, and verification to AI coding assistants",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"mcp-server",
|
|
9
|
+
"model-context-protocol",
|
|
10
|
+
"ai",
|
|
11
|
+
"llm",
|
|
12
|
+
"ai-coding",
|
|
13
|
+
"claude",
|
|
14
|
+
"cursor",
|
|
15
|
+
"windsurf",
|
|
16
|
+
"design-system",
|
|
17
|
+
"design-intelligence",
|
|
18
|
+
"ui-generation",
|
|
19
|
+
"drift-detection"
|
|
20
|
+
],
|
|
5
21
|
"author": "Decantr AI",
|
|
6
22
|
"license": "MIT",
|
|
7
23
|
"bugs": {
|