@createsomething/ground-mcp 0.2.3 → 0.2.4
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 +25 -1
- package/bin/ground-mcp +0 -0
- package/package.json +24 -2
package/README.md
CHANGED
|
@@ -3,10 +3,23 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@createsomething/ground-mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
Grounded claims for code
|
|
6
|
+
**Grounded claims for code.** An MCP server that prevents AI hallucination in code analysis.
|
|
7
|
+
|
|
8
|
+
Works with Claude Code, Cursor, Windsurf, VS Code Copilot, Claude Desktop, and any MCP-compatible AI coding assistant.
|
|
7
9
|
|
|
8
10
|
**[View Landing Page →](https://createsomething.agency/products/ground)**
|
|
9
11
|
|
|
12
|
+
## Why Ground?
|
|
13
|
+
|
|
14
|
+
| Capability | Without Ground | With Ground |
|
|
15
|
+
|------------|---------------|-------------|
|
|
16
|
+
| Duplicate detection | "These look 95% similar" | Computed 87.3% similarity via AST + token analysis |
|
|
17
|
+
| Dead code claims | "This appears unused" | Verified: 0 imports, 0 type references |
|
|
18
|
+
| Orphan detection | "Nothing imports this" | Checked: not a Worker entry point, not framework-implicit |
|
|
19
|
+
| Design drift | "Colors look hardcoded" | Adoption ratio: 73% tokens, 27% violations |
|
|
20
|
+
|
|
21
|
+
**The difference**: Ground requires computation before claims. No hallucinated analysis.
|
|
22
|
+
|
|
10
23
|
## The Problem
|
|
11
24
|
|
|
12
25
|
AI agents are confident. Too confident.
|
|
@@ -23,6 +36,7 @@ Ground is an MCP server that:
|
|
|
23
36
|
- Finds duplicates, dead code, and orphaned modules
|
|
24
37
|
- Requires verification before claims
|
|
25
38
|
- Blocks hallucinated analysis
|
|
39
|
+
- Provides confidence scores with evidence
|
|
26
40
|
|
|
27
41
|
---
|
|
28
42
|
|
|
@@ -312,3 +326,13 @@ See [Full Documentation](https://github.com/createsomethingtoday/create-somethin
|
|
|
312
326
|
## License
|
|
313
327
|
|
|
314
328
|
MIT
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
## Related
|
|
333
|
+
|
|
334
|
+
Looking for task coordination? See [@createsomething/loom-mcp](https://www.npmjs.com/package/@createsomething/loom-mcp) — multi-agent coordination with crash recovery.
|
|
335
|
+
|
|
336
|
+
## Keywords
|
|
337
|
+
|
|
338
|
+
MCP server, Model Context Protocol, AI code analysis, static analysis, duplicate detection, dead code detection, orphan detection, code quality, hallucination prevention, LLM tools, Claude Code, Cursor IDE, Windsurf, VS Code Copilot, Anthropic Claude, AI coding assistant, Rust, TypeScript, JavaScript, monorepo analysis, design tokens, CSS analysis, code verification.
|
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.4",
|
|
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",
|
|
@@ -15,15 +15,37 @@
|
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"mcp",
|
|
18
|
+
"mcp-server",
|
|
18
19
|
"model-context-protocol",
|
|
19
20
|
"ai",
|
|
21
|
+
"ai-coding",
|
|
22
|
+
"ai-agent",
|
|
20
23
|
"code-analysis",
|
|
24
|
+
"static-analysis",
|
|
21
25
|
"duplicate-detection",
|
|
22
26
|
"dead-code",
|
|
27
|
+
"dead-code-detection",
|
|
28
|
+
"orphan-detection",
|
|
29
|
+
"code-quality",
|
|
30
|
+
"hallucination-prevention",
|
|
23
31
|
"grounding",
|
|
32
|
+
"verification",
|
|
24
33
|
"llm",
|
|
34
|
+
"llm-tools",
|
|
25
35
|
"claude",
|
|
26
|
-
"
|
|
36
|
+
"claude-code",
|
|
37
|
+
"cursor",
|
|
38
|
+
"windsurf",
|
|
39
|
+
"copilot",
|
|
40
|
+
"codex",
|
|
41
|
+
"anthropic",
|
|
42
|
+
"openai",
|
|
43
|
+
"rust",
|
|
44
|
+
"typescript",
|
|
45
|
+
"javascript",
|
|
46
|
+
"monorepo",
|
|
47
|
+
"design-tokens",
|
|
48
|
+
"css-analysis"
|
|
27
49
|
],
|
|
28
50
|
"bin": {
|
|
29
51
|
"ground-mcp": "bin/ground-mcp"
|