@nimbus-app/mcp 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +5 -44
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -104,37 +104,6 @@ Add to your MCP config:
104
104
 
105
105
  ---
106
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:
119
-
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
107
  ## OpenAI Codex CLI
139
108
 
140
109
  One command:
@@ -203,25 +172,17 @@ Search for recorded workflows/sessions by natural language query. Returns matchi
203
172
  - "Find workflows where I submitted homework"
204
173
  - "Show my recent workflows about expense reports"
205
174
 
206
- ### `nimbus_get_workflow_steps`
175
+ ### `nimbus_get_workflow`
207
176
 
208
- Get detailed task executions and ordered workflow steps for a specific workflow.
177
+ Get a high-level overview of a recording session which tasks the user performed, in what order, and the platforms involved.
209
178
 
210
179
  **Example prompts:**
211
- - "Show the step-by-step flow for this workflow"
212
- - "Get workflow steps including screenshots"
180
+ - "Show me what happened in that workflow"
181
+ - "Get the task breakdown for this session"
213
182
 
214
183
  ### `nimbus_search_platforms`
215
184
 
216
- Search for platforms (apps/websites) you work with. Returns platform knowledge and related tasks.
217
-
218
- **Example prompts:**
219
- - "What platforms do I use for development?"
220
- - "Find information about Canvas"
221
-
222
- ### `nimbus_get_platform`
223
-
224
- Get full details for a specific platform, including accumulated knowledge about how it works and all tasks you perform on it.
185
+ Search for platforms (apps/websites) you work with. Returns full platform details including accumulated knowledge, identifiers, and related tasks.
225
186
 
226
187
  ### `nimbus_ask_user`
227
188
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-app/mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
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",