@createsomething/ground-mcp 0.2.0 → 0.2.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.
- package/README.md +68 -6
- package/bin/ground-mcp +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,17 +94,55 @@ Then add to your tool's MCP config:
|
|
|
94
94
|
|
|
95
95
|
## Available Tools
|
|
96
96
|
|
|
97
|
+
### Core Analysis
|
|
98
|
+
|
|
99
|
+
| Tool | What it does |
|
|
100
|
+
|------|--------------|
|
|
101
|
+
| `ground_compare` | Compare two files for similarity (0.0-1.0 score) |
|
|
102
|
+
| `ground_count_uses` | Count symbol uses; distinguishes runtime vs type-only usages |
|
|
103
|
+
| `ground_check_connections` | Check if module is connected (understands Cloudflare Workers) |
|
|
104
|
+
| `ground_find_duplicate_functions` | Find duplicates across AND within files; supports monorepos |
|
|
105
|
+
|
|
106
|
+
### Verified Claims (Audit Trail)
|
|
107
|
+
|
|
108
|
+
| Tool | What it does |
|
|
109
|
+
|------|--------------|
|
|
110
|
+
| `ground_claim_dead_code` | Claim code is dead — **blocked** until you've counted uses |
|
|
111
|
+
| `ground_claim_orphan` | Claim module is orphaned — **blocked** until you've checked connections |
|
|
112
|
+
|
|
113
|
+
### Discovery Tools
|
|
114
|
+
|
|
97
115
|
| Tool | What it does |
|
|
98
116
|
|------|--------------|
|
|
99
|
-
| `ground_compare` | Compare two files for similarity |
|
|
100
|
-
| `ground_count_uses` | Count symbol uses (distinguishes definitions vs actual uses) |
|
|
101
|
-
| `ground_check_connections` | Check if a module is connected (understands Workers) |
|
|
102
|
-
| `ground_find_duplicate_functions` | Find copied functions across files |
|
|
103
117
|
| `ground_find_orphans` | Find modules nothing imports |
|
|
104
118
|
| `ground_find_dead_exports` | Find exports never imported elsewhere |
|
|
105
119
|
| `ground_check_environment` | Detect Workers/Node.js API leakage |
|
|
106
|
-
| `
|
|
107
|
-
|
|
120
|
+
| `ground_suggest_fix` | Get suggestions for fixing duplications |
|
|
121
|
+
|
|
122
|
+
### Graph-Based Analysis (Fast Repo-Wide Scans)
|
|
123
|
+
|
|
124
|
+
| Tool | What it does |
|
|
125
|
+
|------|--------------|
|
|
126
|
+
| `ground_build_graph` | Build symbol graph for repo-wide analysis |
|
|
127
|
+
| `ground_query_dead` | Query graph for dead exports (filters framework conventions) |
|
|
128
|
+
|
|
129
|
+
### AI-Native Tools
|
|
130
|
+
|
|
131
|
+
| Tool | What it does |
|
|
132
|
+
|------|--------------|
|
|
133
|
+
| `ground_analyze` | Batch analysis: duplicates + dead exports + orphans + environment |
|
|
134
|
+
| `ground_diff` | Incremental analysis vs git baseline (only NEW issues) |
|
|
135
|
+
| `ground_verify_fix` | Verify a fix was applied correctly |
|
|
136
|
+
|
|
137
|
+
### Design System Analysis (v2.1)
|
|
138
|
+
|
|
139
|
+
| Tool | What it does |
|
|
140
|
+
|------|--------------|
|
|
141
|
+
| `ground_find_drift` | Find design token violations (hardcoded colors, spacing, etc.) |
|
|
142
|
+
| `ground_adoption_ratio` | Calculate token adoption percentage with health thresholds |
|
|
143
|
+
| `ground_suggest_pattern` | Suggest tokens to replace hardcoded values |
|
|
144
|
+
| `ground_mine_patterns` | Discover implicit patterns that should become tokens |
|
|
145
|
+
| `ground_explain` | AI-native traceability — explain why files are excluded |
|
|
108
146
|
|
|
109
147
|
## Usage Examples
|
|
110
148
|
|
|
@@ -122,6 +160,20 @@ Check if the old-utils module is still connected to anything
|
|
|
122
160
|
Run ground_analyze on packages/sdk to find dead code
|
|
123
161
|
```
|
|
124
162
|
|
|
163
|
+
```
|
|
164
|
+
What's the CSS token adoption ratio in packages/components?
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
Find design drift in my CSS files only (use extensions: "css")
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
## What's New in 0.2.1
|
|
172
|
+
|
|
173
|
+
- **`ground_explain`** — AI-native context traceability. Explains why files are excluded from violation checks (e.g., video-rendering contexts, third-party CSS)
|
|
174
|
+
- **`ground_find_drift` extensions filter** — Analyze specific file types (e.g., `extensions: "css"` for CSS-only analysis)
|
|
175
|
+
- **Context system** — Configure intentional exclusions in `.ground.yml` with full audit trail
|
|
176
|
+
|
|
125
177
|
## Philosophy
|
|
126
178
|
|
|
127
179
|
Ground is based on a simple principle: **no claim without evidence**.
|
|
@@ -132,6 +184,16 @@ Ground is based on a simple principle: **no claim without evidence**.
|
|
|
132
184
|
|
|
133
185
|
This prevents AI hallucination by requiring computation before synthesis.
|
|
134
186
|
|
|
187
|
+
## Configuration
|
|
188
|
+
|
|
189
|
+
Ground loads `.ground.yml` from your project root for:
|
|
190
|
+
- Ignore patterns (functions, files, directories)
|
|
191
|
+
- Known drift exceptions with documented reasons
|
|
192
|
+
- Context declarations for intentional exclusions
|
|
193
|
+
- Similarity thresholds
|
|
194
|
+
|
|
195
|
+
See [Full Documentation](https://github.com/createsomethingtoday/create-something-monorepo/tree/main/packages/ground) for configuration reference.
|
|
196
|
+
|
|
135
197
|
## Links
|
|
136
198
|
|
|
137
199
|
- [Full Documentation](https://github.com/createsomethingtoday/create-something-monorepo/tree/main/packages/ground)
|
package/bin/ground-mcp
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@createsomething/ground-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
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",
|