@createsomething/ground-mcp 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,12 @@
1
1
  # @createsomething/ground-mcp
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@createsomething/ground-mcp.svg)](https://www.npmjs.com/package/@createsomething/ground-mcp)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  Grounded claims for code. An MCP server that prevents AI hallucination in code analysis.
4
7
 
8
+ **[View Landing Page →](https://createsomething.agency/products/ground)**
9
+
5
10
  ## The Problem
6
11
 
7
12
  AI agents are confident. Too confident.
@@ -19,15 +24,63 @@ Ground is an MCP server that:
19
24
  - Requires verification before claims
20
25
  - Blocks hallucinated analysis
21
26
 
22
- ## Installation
27
+ ---
28
+
29
+ ## Quick Install
30
+
31
+ ### Cursor (One-Click)
32
+
33
+ [**Install in Cursor →**](cursor://anysphere.cursor-deeplink/mcp/install?name=ground&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyJAY3JlYXRlc29tZXRoaW5nL2dyb3VuZC1tY3AiXX0%3D)
34
+
35
+ ### Claude Desktop
36
+
37
+ Add to `claude_desktop_config.json`:
38
+
39
+ ```json
40
+ {
41
+ "mcpServers": {
42
+ "ground": {
43
+ "command": "npx",
44
+ "args": ["@createsomething/ground-mcp"]
45
+ }
46
+ }
47
+ }
48
+ ```
49
+
50
+ ### Windsurf
51
+
52
+ Settings → MCP → View raw config, add:
53
+
54
+ ```json
55
+ {
56
+ "mcpServers": {
57
+ "ground": {
58
+ "command": "npx",
59
+ "args": ["@createsomething/ground-mcp"]
60
+ }
61
+ }
62
+ }
63
+ ```
64
+
65
+ ### VS Code + Copilot
66
+
67
+ 1. Open Extensions panel
68
+ 2. Filter by "MCP Server"
69
+ 3. Search "ground"
70
+
71
+ ### Codex CLI
23
72
 
24
73
  ```bash
25
- npm install -g @createsomething/ground-mcp
74
+ codex mcp add ground --command "npx @createsomething/ground-mcp"
26
75
  ```
27
76
 
28
- ## MCP Configuration
77
+ ### npm (Global Install)
29
78
 
30
- Add to `.cursor/mcp.json`:
79
+ ```bash
80
+ npm install -g @createsomething/ground-mcp
81
+ ```
82
+
83
+ Then add to your tool's MCP config:
31
84
 
32
85
  ```json
33
86
  {
@@ -39,8 +92,6 @@ Add to `.cursor/mcp.json`:
39
92
  }
40
93
  ```
41
94
 
42
- Restart Cursor. Ground tools are now available.
43
-
44
95
  ## Available Tools
45
96
 
46
97
  | Tool | What it does |
package/bin/ground-mcp ADDED
Binary file
package/install.js CHANGED
@@ -16,9 +16,10 @@ const REPO = 'createsomethingtoday/create-something-monorepo';
16
16
  const VERSION = require('./package.json').version;
17
17
 
18
18
  // Platform mapping
19
+ // Note: macOS Intel uses arm64 binary via Rosetta 2
19
20
  const PLATFORMS = {
20
21
  'darwin-arm64': 'darwin-arm64',
21
- 'darwin-x64': 'darwin-x64',
22
+ 'darwin-x64': 'darwin-arm64', // Rosetta 2 compatibility
22
23
  'linux-arm64': 'linux-arm64',
23
24
  'linux-x64': 'linux-x64',
24
25
  'win32-x64': 'win32-x64',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@createsomething/ground-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
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",
@@ -26,8 +26,7 @@
26
26
  "cursor"
27
27
  ],
28
28
  "bin": {
29
- "ground-mcp": "bin/ground-mcp",
30
- "ground": "bin/ground"
29
+ "ground-mcp": "bin/ground-mcp"
31
30
  },
32
31
  "scripts": {
33
32
  "postinstall": "node install.js"