@nimbus-app/mcp 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +155 -54
  2. package/package.json +11 -3
package/README.md CHANGED
@@ -1,25 +1,25 @@
1
1
  # Nimbus MCP Server
2
2
 
3
- Connect Claude to your task memory. This MCP server lets Claude access your captured tasks and platform knowledge from Nimbus, so it can learn how you perform tasks and help you more effectively.
3
+ Connect your AI assistant to your workflow memory. This MCP server lets AI tools access your captured tasks and platform knowledge from Nimbus, so they can learn how you perform tasks and help you more effectively.
4
4
 
5
5
  ## Quick Start
6
6
 
7
- ### 1. Install
8
-
9
- ```bash
10
- npm install -g @nimbus-app/mcp
11
- ```
12
-
13
- ### 2. Get Your API Key
7
+ ### 1. Get Your API Key
14
8
 
15
9
  1. Open the Nimbus desktop app
16
10
  2. Go to **Settings** → **Account**
17
11
  3. Click **Generate MCP API Key**
18
12
  4. Copy the key (starts with `nimbus_`)
19
13
 
20
- ### 3. Configure Claude Desktop
14
+ ### 2. Connect Your AI Tool
15
+
16
+ Choose your platform below.
17
+
18
+ ---
21
19
 
22
- Add to your Claude Desktop config file:
20
+ ## Claude Desktop
21
+
22
+ Add to your config file:
23
23
 
24
24
  **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
25
25
  **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
@@ -28,22 +28,155 @@ Add to your Claude Desktop config file:
28
28
  {
29
29
  "mcpServers": {
30
30
  "nimbus": {
31
- "command": "nimbus-mcp",
31
+ "command": "npx",
32
+ "args": ["-y", "@nimbus-app/mcp"],
32
33
  "env": {
33
- "NIMBUS_API_KEY": "nimbus_your_api_key_here"
34
+ "NIMBUS_API_KEY": "nimbus_your_key_here"
34
35
  }
35
36
  }
36
37
  }
37
38
  }
38
39
  ```
39
40
 
40
- ### 4. Restart Claude Desktop
41
+ Restart Claude Desktop (Cmd+Q / Ctrl+Q, reopen). You should see "nimbus" in the MCP tools list.
42
+
43
+ ---
44
+
45
+ ## Claude Code (CLI)
46
+
47
+ One command:
48
+
49
+ ```bash
50
+ claude mcp add nimbus -e NIMBUS_API_KEY=your_key -- npx -y @nimbus-app/mcp
51
+ ```
52
+
53
+ To make it available across all projects:
54
+
55
+ ```bash
56
+ claude mcp add --scope user nimbus -e NIMBUS_API_KEY=your_key -- npx -y @nimbus-app/mcp
57
+ ```
58
+
59
+ ---
60
+
61
+ ## Cursor
62
+
63
+ Add to your MCP config:
64
+
65
+ **Global:** `~/.cursor/mcp.json`
66
+ **Per-project:** `.cursor/mcp.json` in project root
67
+
68
+ ```json
69
+ {
70
+ "mcpServers": {
71
+ "nimbus": {
72
+ "command": "npx",
73
+ "args": ["-y", "@nimbus-app/mcp"],
74
+ "env": {
75
+ "NIMBUS_API_KEY": "nimbus_your_key_here"
76
+ }
77
+ }
78
+ }
79
+ }
80
+ ```
81
+
82
+ ---
83
+
84
+ ## Windsurf
85
+
86
+ Add to your MCP config:
87
+
88
+ **macOS/Linux:** `~/.codeium/windsurf/mcp_config.json`
89
+ **Windows:** `%USERPROFILE%\.codeium\windsurf\mcp_config.json`
90
+
91
+ ```json
92
+ {
93
+ "mcpServers": {
94
+ "nimbus": {
95
+ "command": "npx",
96
+ "args": ["-y", "@nimbus-app/mcp"],
97
+ "env": {
98
+ "NIMBUS_API_KEY": "nimbus_your_key_here"
99
+ }
100
+ }
101
+ }
102
+ }
103
+ ```
104
+
105
+ ---
106
+
107
+ ## ChatGPT Desktop
108
+
109
+ Requires ChatGPT Pro/Team/Enterprise with Developer Mode enabled.
110
+
111
+ 1. Open ChatGPT Desktop → **Settings** → **Developer** → Enable **Developer Mode**
112
+ 2. Under **MCP Servers**, click **Add Server**
113
+ 3. Choose **stdio** transport and configure:
114
+ - **Command:** `npx`
115
+ - **Args:** `-y @nimbus-app/mcp`
116
+ - **Env:** `NIMBUS_API_KEY` = `nimbus_your_key_here`
117
+
118
+ Or edit the config file directly:
41
119
 
42
- Quit and reopen Claude Desktop. You should see "nimbus" in the MCP servers list.
120
+ **macOS:** `~/Library/Application Support/com.openai.chat/mcp.json`
121
+
122
+ ```json
123
+ {
124
+ "mcpServers": {
125
+ "nimbus": {
126
+ "command": "npx",
127
+ "args": ["-y", "@nimbus-app/mcp"],
128
+ "env": {
129
+ "NIMBUS_API_KEY": "nimbus_your_key_here"
130
+ }
131
+ }
132
+ }
133
+ }
134
+ ```
135
+
136
+ ---
137
+
138
+ ## OpenAI Codex CLI
139
+
140
+ One command:
141
+
142
+ ```bash
143
+ codex mcp add nimbus --env NIMBUS_API_KEY=your_key -- npx -y @nimbus-app/mcp
144
+ ```
145
+
146
+ Or add manually to `~/.codex/config.toml`:
147
+
148
+ ```toml
149
+ [mcp_servers.nimbus]
150
+ command = "npx"
151
+ args = ["-y", "@nimbus-app/mcp"]
152
+
153
+ [mcp_servers.nimbus.env]
154
+ NIMBUS_API_KEY = "nimbus_your_key_here"
155
+ ```
156
+
157
+ ---
158
+
159
+ ## Any MCP-Compatible Tool
160
+
161
+ The server works with any tool that supports the [Model Context Protocol](https://modelcontextprotocol.io). Use stdio transport:
162
+
163
+ - **Command:** `npx -y @nimbus-app/mcp`
164
+ - **Environment:** `NIMBUS_API_KEY=your_key`
165
+ - **Transport:** stdio
166
+
167
+ Or install globally first:
168
+
169
+ ```bash
170
+ npm install -g @nimbus-app/mcp
171
+ ```
172
+
173
+ Then use `nimbus-mcp` as the command instead of `npx -y @nimbus-app/mcp`.
174
+
175
+ ---
43
176
 
44
177
  ## Available Tools
45
178
 
46
- Once connected, Claude has access to these tools:
179
+ Once connected, your AI assistant has access to:
47
180
 
48
181
  ### `nimbus_search_tasks`
49
182
 
@@ -69,7 +202,6 @@ Search for recorded workflows/sessions by natural language query. Returns matchi
69
202
  **Example prompts:**
70
203
  - "Find workflows where I submitted homework"
71
204
  - "Show my recent workflows about expense reports"
72
- - "Search my workflows for VS Code setup"
73
205
 
74
206
  ### `nimbus_get_workflow_steps`
75
207
 
@@ -78,7 +210,6 @@ Get detailed task executions and ordered workflow steps for a specific workflow.
78
210
  **Example prompts:**
79
211
  - "Show the step-by-step flow for this workflow"
80
212
  - "Get workflow steps including screenshots"
81
- - "Explain the executions in this workflow"
82
213
 
83
214
  ### `nimbus_search_platforms`
84
215
 
@@ -92,18 +223,10 @@ Search for platforms (apps/websites) you work with. Returns platform knowledge a
92
223
 
93
224
  Get full details for a specific platform, including accumulated knowledge about how it works and all tasks you perform on it.
94
225
 
95
- **Example prompts:**
96
- - "Show me everything about how I use VS Code"
97
- - "Get full details on this platform"
98
-
99
226
  ### `nimbus_ask_user`
100
227
 
101
228
  Ask you a question (you'll be notified in the Nimbus app).
102
229
 
103
- **Example prompts:**
104
- - "Ask the user which email to use for this form"
105
- - "Check with the user if they want to proceed"
106
-
107
230
  ### `nimbus_get_question_status`
108
231
 
109
232
  Check if you've answered a question.
@@ -142,29 +265,11 @@ Would you like me to walk you through this step by step?
142
265
  | `NIMBUS_API_KEY` | Your Nimbus API key (required) | - |
143
266
  | `NIMBUS_API_URL` | API endpoint URL | `https://api.nimbusai.cloud/mcp/v1` |
144
267
 
145
- ### Staging/Development
146
-
147
- To use the staging API:
148
-
149
- ```json
150
- {
151
- "mcpServers": {
152
- "nimbus": {
153
- "command": "nimbus-mcp",
154
- "env": {
155
- "NIMBUS_API_KEY": "nimbus_your_key",
156
- "NIMBUS_API_URL": "https://api.staging.nimbusai.cloud/mcp/v1"
157
- }
158
- }
159
- }
160
- }
161
- ```
162
-
163
268
  ## Troubleshooting
164
269
 
165
270
  ### "NIMBUS_API_KEY is required"
166
271
 
167
- Make sure you've added the API key to your Claude Desktop config and restarted Claude.
272
+ Make sure you've added the API key to your config and restarted the tool.
168
273
 
169
274
  ### "Invalid or missing API key"
170
275
 
@@ -179,20 +284,16 @@ The API has limits of:
179
284
 
180
285
  Wait a moment and try again.
181
286
 
182
- ### Server not appearing in Claude
287
+ ### Server not appearing
183
288
 
184
289
  1. Check your config file path is correct
185
290
  2. Ensure the JSON is valid (no trailing commas)
186
- 3. Completely quit and restart Claude Desktop
187
- 4. Check Claude's logs for errors
291
+ 3. Completely quit and restart the app
292
+ 4. Try running manually: `NIMBUS_API_KEY=your_key npx @nimbus-app/mcp`
188
293
 
189
- ### Testing the server manually
190
-
191
- ```bash
192
- NIMBUS_API_KEY=your_key nimbus-mcp
193
- ```
294
+ ### Node.js not found
194
295
 
195
- The server should start and wait for MCP protocol messages on stdin.
296
+ You need Node.js 18+. Download from [nodejs.org](https://nodejs.org) (LTS version).
196
297
 
197
298
  ## Privacy & Security
198
299
 
@@ -209,4 +310,4 @@ The server should start and wait for MCP protocol messages on stdin.
209
310
 
210
311
  ## License
211
312
 
212
- MIT
313
+ Proprietary. Copyright Nimbus. All rights reserved.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nimbus-app/mcp",
3
- "version": "1.0.0",
4
- "description": "MCP server for Nimbus - Access your workflow memory from Claude",
3
+ "version": "1.0.2",
4
+ "description": "MCP server for Nimbus - Access your workflow memory from any AI assistant",
5
5
  "author": "Nimbus <support@nimbusai.cloud>",
6
6
  "license": "UNLICENSED",
7
7
  "repository": {
@@ -17,10 +17,18 @@
17
17
  "mcp",
18
18
  "model-context-protocol",
19
19
  "claude",
20
+ "cursor",
21
+ "windsurf",
20
22
  "ai",
21
23
  "workflow",
22
24
  "automation",
23
- "nimbus"
25
+ "nimbus",
26
+ "chatgpt",
27
+ "codex",
28
+ "openai",
29
+ "screen-recording",
30
+ "task-memory",
31
+ "productivity"
24
32
  ],
25
33
  "type": "module",
26
34
  "main": "./dist/index.js",