@nimbus-app/mcp 1.0.1 → 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.
- package/README.md +52 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -104,6 +104,58 @@ 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
|
+
## 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
|
+
|
|
107
159
|
## Any MCP-Compatible Tool
|
|
108
160
|
|
|
109
161
|
The server works with any tool that supports the [Model Context Protocol](https://modelcontextprotocol.io). Use stdio transport:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-app/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"workflow",
|
|
24
24
|
"automation",
|
|
25
25
|
"nimbus",
|
|
26
|
+
"chatgpt",
|
|
27
|
+
"codex",
|
|
28
|
+
"openai",
|
|
26
29
|
"screen-recording",
|
|
27
30
|
"task-memory",
|
|
28
31
|
"productivity"
|