@createsomething/ground-mcp 0.2.1 → 0.2.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 +18 -0
- package/install.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,6 +134,24 @@ Then add to your tool's MCP config:
|
|
|
134
134
|
| `ground_diff` | Incremental analysis vs git baseline (only NEW issues) |
|
|
135
135
|
| `ground_verify_fix` | Verify a fix was applied correctly |
|
|
136
136
|
|
|
137
|
+
## MCP Apps (Interactive UIs)
|
|
138
|
+
|
|
139
|
+
Ground supports the [MCP Apps extension](https://modelcontextprotocol.io/docs/concepts/apps) for interactive visualization directly in the conversation.
|
|
140
|
+
|
|
141
|
+
### Duplicate Explorer UI
|
|
142
|
+
|
|
143
|
+
When you call duplicate analysis tools (`ground_find_duplicate_functions`, `ground_compare`, `ground_suggest_fix`), supported MCP clients can render an interactive duplicate explorer:
|
|
144
|
+
|
|
145
|
+
- Visual similarity scores with color-coded badges
|
|
146
|
+
- Expandable cards showing side-by-side file comparison
|
|
147
|
+
- Adjustable similarity threshold slider
|
|
148
|
+
- One-click compare and suggest fix actions
|
|
149
|
+
- Real-time filtering and search
|
|
150
|
+
|
|
151
|
+
**Supported Clients**: Claude.ai, VS Code (Insiders), ChatGPT, Goose
|
|
152
|
+
|
|
153
|
+
The UI is served via `ui://ground/duplicate-explorer` resource and communicates with the server via postMessage.
|
|
154
|
+
|
|
137
155
|
### Design System Analysis (v2.1)
|
|
138
156
|
|
|
139
157
|
| Tool | What it does |
|
package/install.js
CHANGED
|
@@ -46,8 +46,8 @@ function getBinaryName() {
|
|
|
46
46
|
|
|
47
47
|
function getDownloadUrl(binaryName) {
|
|
48
48
|
const ext = process.platform === 'win32' ? 'zip' : 'tar.gz';
|
|
49
|
-
// Tag format:
|
|
50
|
-
return `https://github.com/${REPO}/releases/download/
|
|
49
|
+
// Tag format: v0.2.0
|
|
50
|
+
return `https://github.com/${REPO}/releases/download/v${VERSION}/ground-${binaryName}.${ext}`;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
async function download(url) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@createsomething/ground-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Grounded claims for code. MCP server that prevents AI hallucination in code analysis.",
|
|
5
5
|
"author": "CREATE SOMETHING <hello@createsomething.io>",
|
|
6
6
|
"license": "MIT",
|