@nimbus-app/mcp 1.0.0 → 1.0.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 +103 -54
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
# Nimbus MCP Server
|
|
2
2
|
|
|
3
|
-
Connect
|
|
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.
|
|
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
|
-
###
|
|
14
|
+
### 2. Connect Your AI Tool
|
|
21
15
|
|
|
22
|
-
|
|
16
|
+
Choose your platform below.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
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,103 @@ Add to your Claude Desktop config file:
|
|
|
28
28
|
{
|
|
29
29
|
"mcpServers": {
|
|
30
30
|
"nimbus": {
|
|
31
|
-
"command": "
|
|
31
|
+
"command": "npx",
|
|
32
|
+
"args": ["-y", "@nimbus-app/mcp"],
|
|
33
|
+
"env": {
|
|
34
|
+
"NIMBUS_API_KEY": "nimbus_your_key_here"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
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"],
|
|
32
97
|
"env": {
|
|
33
|
-
"NIMBUS_API_KEY": "
|
|
98
|
+
"NIMBUS_API_KEY": "nimbus_your_key_here"
|
|
34
99
|
}
|
|
35
100
|
}
|
|
36
101
|
}
|
|
37
102
|
}
|
|
38
103
|
```
|
|
39
104
|
|
|
40
|
-
|
|
105
|
+
---
|
|
41
106
|
|
|
42
|
-
|
|
107
|
+
## Any MCP-Compatible Tool
|
|
108
|
+
|
|
109
|
+
The server works with any tool that supports the [Model Context Protocol](https://modelcontextprotocol.io). Use stdio transport:
|
|
110
|
+
|
|
111
|
+
- **Command:** `npx -y @nimbus-app/mcp`
|
|
112
|
+
- **Environment:** `NIMBUS_API_KEY=your_key`
|
|
113
|
+
- **Transport:** stdio
|
|
114
|
+
|
|
115
|
+
Or install globally first:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
npm install -g @nimbus-app/mcp
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Then use `nimbus-mcp` as the command instead of `npx -y @nimbus-app/mcp`.
|
|
122
|
+
|
|
123
|
+
---
|
|
43
124
|
|
|
44
125
|
## Available Tools
|
|
45
126
|
|
|
46
|
-
Once connected,
|
|
127
|
+
Once connected, your AI assistant has access to:
|
|
47
128
|
|
|
48
129
|
### `nimbus_search_tasks`
|
|
49
130
|
|
|
@@ -69,7 +150,6 @@ Search for recorded workflows/sessions by natural language query. Returns matchi
|
|
|
69
150
|
**Example prompts:**
|
|
70
151
|
- "Find workflows where I submitted homework"
|
|
71
152
|
- "Show my recent workflows about expense reports"
|
|
72
|
-
- "Search my workflows for VS Code setup"
|
|
73
153
|
|
|
74
154
|
### `nimbus_get_workflow_steps`
|
|
75
155
|
|
|
@@ -78,7 +158,6 @@ Get detailed task executions and ordered workflow steps for a specific workflow.
|
|
|
78
158
|
**Example prompts:**
|
|
79
159
|
- "Show the step-by-step flow for this workflow"
|
|
80
160
|
- "Get workflow steps including screenshots"
|
|
81
|
-
- "Explain the executions in this workflow"
|
|
82
161
|
|
|
83
162
|
### `nimbus_search_platforms`
|
|
84
163
|
|
|
@@ -92,18 +171,10 @@ Search for platforms (apps/websites) you work with. Returns platform knowledge a
|
|
|
92
171
|
|
|
93
172
|
Get full details for a specific platform, including accumulated knowledge about how it works and all tasks you perform on it.
|
|
94
173
|
|
|
95
|
-
**Example prompts:**
|
|
96
|
-
- "Show me everything about how I use VS Code"
|
|
97
|
-
- "Get full details on this platform"
|
|
98
|
-
|
|
99
174
|
### `nimbus_ask_user`
|
|
100
175
|
|
|
101
176
|
Ask you a question (you'll be notified in the Nimbus app).
|
|
102
177
|
|
|
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
178
|
### `nimbus_get_question_status`
|
|
108
179
|
|
|
109
180
|
Check if you've answered a question.
|
|
@@ -142,29 +213,11 @@ Would you like me to walk you through this step by step?
|
|
|
142
213
|
| `NIMBUS_API_KEY` | Your Nimbus API key (required) | - |
|
|
143
214
|
| `NIMBUS_API_URL` | API endpoint URL | `https://api.nimbusai.cloud/mcp/v1` |
|
|
144
215
|
|
|
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
216
|
## Troubleshooting
|
|
164
217
|
|
|
165
218
|
### "NIMBUS_API_KEY is required"
|
|
166
219
|
|
|
167
|
-
Make sure you've added the API key to your
|
|
220
|
+
Make sure you've added the API key to your config and restarted the tool.
|
|
168
221
|
|
|
169
222
|
### "Invalid or missing API key"
|
|
170
223
|
|
|
@@ -179,20 +232,16 @@ The API has limits of:
|
|
|
179
232
|
|
|
180
233
|
Wait a moment and try again.
|
|
181
234
|
|
|
182
|
-
### Server not appearing
|
|
235
|
+
### Server not appearing
|
|
183
236
|
|
|
184
237
|
1. Check your config file path is correct
|
|
185
238
|
2. Ensure the JSON is valid (no trailing commas)
|
|
186
|
-
3. Completely quit and restart
|
|
187
|
-
4.
|
|
188
|
-
|
|
189
|
-
### Testing the server manually
|
|
239
|
+
3. Completely quit and restart the app
|
|
240
|
+
4. Try running manually: `NIMBUS_API_KEY=your_key npx @nimbus-app/mcp`
|
|
190
241
|
|
|
191
|
-
|
|
192
|
-
NIMBUS_API_KEY=your_key nimbus-mcp
|
|
193
|
-
```
|
|
242
|
+
### Node.js not found
|
|
194
243
|
|
|
195
|
-
|
|
244
|
+
You need Node.js 18+. Download from [nodejs.org](https://nodejs.org) (LTS version).
|
|
196
245
|
|
|
197
246
|
## Privacy & Security
|
|
198
247
|
|
|
@@ -209,4 +258,4 @@ The server should start and wait for MCP protocol messages on stdin.
|
|
|
209
258
|
|
|
210
259
|
## License
|
|
211
260
|
|
|
212
|
-
|
|
261
|
+
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.
|
|
4
|
-
"description": "MCP server for Nimbus - Access your workflow memory from
|
|
3
|
+
"version": "1.0.1",
|
|
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,15 @@
|
|
|
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
|
+
"screen-recording",
|
|
27
|
+
"task-memory",
|
|
28
|
+
"productivity"
|
|
24
29
|
],
|
|
25
30
|
"type": "module",
|
|
26
31
|
"main": "./dist/index.js",
|