@nestr/mcp 0.1.8 → 0.1.9
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/package.json +1 -1
- package/web/index.html +45 -83
package/package.json
CHANGED
package/web/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Nestr MCP Server - Connect AI to Your Workspace</title>
|
|
7
|
-
<meta name="description" content="Connect Claude, Cursor,
|
|
7
|
+
<meta name="description" content="Connect Claude, Cursor, and other AI assistants to your Nestr workspace using the Model Context Protocol (MCP).">
|
|
8
8
|
<link rel="stylesheet" href="styles.css">
|
|
9
9
|
<link rel="icon" href="https://app.nestr.io/favicon.ico">
|
|
10
10
|
</head>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<div class="container">
|
|
32
32
|
<h1>Connect AI to Your Nestr Workspace</h1>
|
|
33
33
|
<p class="subtitle">
|
|
34
|
-
Use the Model Context Protocol (MCP) to let Claude, Cursor,
|
|
34
|
+
Use the Model Context Protocol (MCP) to let Claude, Cursor, and other AI assistants
|
|
35
35
|
interact with your tasks, projects, circles, and roles.
|
|
36
36
|
</p>
|
|
37
37
|
<div class="cta-buttons">
|
|
@@ -174,40 +174,39 @@
|
|
|
174
174
|
<button class="tab active" data-tab="claude-desktop">Claude Desktop</button>
|
|
175
175
|
<button class="tab" data-tab="claude-code">Claude Code</button>
|
|
176
176
|
<button class="tab" data-tab="cursor">Cursor</button>
|
|
177
|
-
<button class="tab" data-tab="raycast">Raycast</button>
|
|
178
177
|
</div>
|
|
179
178
|
|
|
180
179
|
<div class="tab-content active" id="claude-desktop">
|
|
181
|
-
<
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
}</code></pre>
|
|
180
|
+
<div class="config-block hosted oauth active">
|
|
181
|
+
<div class="quickstart-box">
|
|
182
|
+
<h4>Quickstart (Recommended)</h4>
|
|
183
|
+
<p><strong>Step 1:</strong> In Claude Desktop, go to <strong>Settings → Connectors → Add custom connector</strong></p>
|
|
184
|
+
<p><strong>Step 2:</strong> Fill in the following:</p>
|
|
185
|
+
<table class="field-table">
|
|
186
|
+
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
187
|
+
<tr><td><strong>Remote MCP URL</strong></td><td><code>https://mcp.nestr.io/mcp</code></td></tr>
|
|
188
|
+
</table>
|
|
189
|
+
<p><strong>Step 3:</strong> Click "Add" and then "Authenticate" to log in with your Nestr account.</p>
|
|
190
|
+
<p class="quickstart-note">That's it! Claude Desktop will handle the OAuth flow automatically.</p>
|
|
191
|
+
</div>
|
|
192
|
+
</div>
|
|
198
193
|
|
|
199
|
-
<
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
}
|
|
208
|
-
}</code></pre>
|
|
194
|
+
<div class="config-block hosted apikey">
|
|
195
|
+
<p>Go to <strong>Settings → Connectors → Add custom connector</strong> and fill in:</p>
|
|
196
|
+
<table class="field-table">
|
|
197
|
+
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
198
|
+
<tr><td><strong>Remote MCP URL</strong></td><td><code>https://mcp.nestr.io/mcp</code></td></tr>
|
|
199
|
+
<tr><td><strong>Headers</strong></td><td><code>X-Nestr-API-Key: your-api-key-here</code></td></tr>
|
|
200
|
+
</table>
|
|
201
|
+
</div>
|
|
209
202
|
|
|
210
|
-
<
|
|
203
|
+
<div class="config-block local oauth">
|
|
204
|
+
<p>For local setup, edit your config file:</p>
|
|
205
|
+
<ul>
|
|
206
|
+
<li><strong>macOS:</strong> <code>~/Library/Application Support/Claude/claude_desktop_config.json</code></li>
|
|
207
|
+
<li><strong>Windows:</strong> <code>%APPDATA%\Claude\claude_desktop_config.json</code></li>
|
|
208
|
+
</ul>
|
|
209
|
+
<pre><code>{
|
|
211
210
|
"mcpServers": {
|
|
212
211
|
"nestr": {
|
|
213
212
|
"command": "npx",
|
|
@@ -218,8 +217,16 @@
|
|
|
218
217
|
}
|
|
219
218
|
}
|
|
220
219
|
}</code></pre>
|
|
220
|
+
<p>Restart Claude Desktop after saving.</p>
|
|
221
|
+
</div>
|
|
221
222
|
|
|
222
|
-
<
|
|
223
|
+
<div class="config-block local apikey">
|
|
224
|
+
<p>For local setup, edit your config file:</p>
|
|
225
|
+
<ul>
|
|
226
|
+
<li><strong>macOS:</strong> <code>~/Library/Application Support/Claude/claude_desktop_config.json</code></li>
|
|
227
|
+
<li><strong>Windows:</strong> <code>%APPDATA%\Claude\claude_desktop_config.json</code></li>
|
|
228
|
+
</ul>
|
|
229
|
+
<pre><code>{
|
|
223
230
|
"mcpServers": {
|
|
224
231
|
"nestr": {
|
|
225
232
|
"command": "npx",
|
|
@@ -230,16 +237,18 @@
|
|
|
230
237
|
}
|
|
231
238
|
}
|
|
232
239
|
}</code></pre>
|
|
233
|
-
|
|
240
|
+
<p>Restart Claude Desktop after saving.</p>
|
|
241
|
+
</div>
|
|
234
242
|
</div>
|
|
235
243
|
|
|
236
244
|
<div class="tab-content" id="claude-code">
|
|
237
245
|
<div class="config-block hosted oauth active">
|
|
238
246
|
<div class="quickstart-box">
|
|
239
247
|
<h4>Quickstart (Recommended)</h4>
|
|
240
|
-
<p>
|
|
248
|
+
<p><strong>Step 1:</strong> Add the Nestr MCP server:</p>
|
|
241
249
|
<pre><code>claude mcp add nestr --transport http https://mcp.nestr.io/mcp</code></pre>
|
|
242
|
-
<p
|
|
250
|
+
<p><strong>Step 2:</strong> In Claude Code, run <code>/mcp</code> and click "Authenticate" next to Nestr. This will open your browser to log in with Nestr.</p>
|
|
251
|
+
<p class="quickstart-note">That's it! Once authenticated, Claude Code can access your Nestr workspace.</p>
|
|
243
252
|
</div>
|
|
244
253
|
<p>Or, if you already have a token, add it manually:</p>
|
|
245
254
|
<pre><code>claude mcp add nestr --transport http https://mcp.nestr.io/mcp \
|
|
@@ -264,7 +273,7 @@
|
|
|
264
273
|
--env NESTR_API_KEY=your-api-key-here</code></pre>
|
|
265
274
|
</div>
|
|
266
275
|
|
|
267
|
-
<p>
|
|
276
|
+
<p>Run <code>/mcp</code> anytime to check connection status or re-authenticate.</p>
|
|
268
277
|
</div>
|
|
269
278
|
|
|
270
279
|
<div class="tab-content" id="cursor">
|
|
@@ -323,53 +332,6 @@
|
|
|
323
332
|
<p>Restart Cursor after saving.</p>
|
|
324
333
|
</div>
|
|
325
334
|
|
|
326
|
-
<div class="tab-content" id="raycast">
|
|
327
|
-
<p>In Raycast, go to <strong>Settings → Extensions → AI → MCP Servers</strong>, then press <kbd>⌘N</kbd> to add a new server.</p>
|
|
328
|
-
|
|
329
|
-
<div class="config-block hosted oauth active">
|
|
330
|
-
<p>Fill in the following fields:</p>
|
|
331
|
-
<table class="field-table">
|
|
332
|
-
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
333
|
-
<tr><td><strong>Transport</strong></td><td>HTTP</td></tr>
|
|
334
|
-
<tr><td><strong>URL</strong></td><td><code>https://mcp.nestr.io/mcp</code></td></tr>
|
|
335
|
-
<tr><td><strong>HTTP Headers</strong></td><td>Click "Add Item" and add:<br><code>Authorization</code> = <code>Bearer your-oauth-token</code></td></tr>
|
|
336
|
-
</table>
|
|
337
|
-
</div>
|
|
338
|
-
|
|
339
|
-
<div class="config-block hosted apikey">
|
|
340
|
-
<p>Fill in the following fields:</p>
|
|
341
|
-
<table class="field-table">
|
|
342
|
-
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
343
|
-
<tr><td><strong>Transport</strong></td><td>HTTP</td></tr>
|
|
344
|
-
<tr><td><strong>URL</strong></td><td><code>https://mcp.nestr.io/mcp</code></td></tr>
|
|
345
|
-
<tr><td><strong>HTTP Headers</strong></td><td>Click "Add Item" and add:<br><code>X-Nestr-API-Key</code> = <code>your-api-key</code></td></tr>
|
|
346
|
-
</table>
|
|
347
|
-
</div>
|
|
348
|
-
|
|
349
|
-
<div class="config-block local oauth">
|
|
350
|
-
<p>Fill in the following fields:</p>
|
|
351
|
-
<table class="field-table">
|
|
352
|
-
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
353
|
-
<tr><td><strong>Transport</strong></td><td>Standard Input/Output</td></tr>
|
|
354
|
-
<tr><td><strong>Command</strong></td><td><code>npx</code></td></tr>
|
|
355
|
-
<tr><td><strong>Arguments</strong></td><td><code>-y @nestr/mcp</code></td></tr>
|
|
356
|
-
<tr><td><strong>Environment</strong></td><td>Click "Add Item" and add:<br><code>NESTR_OAUTH_TOKEN</code> = <code>your-oauth-token</code></td></tr>
|
|
357
|
-
</table>
|
|
358
|
-
</div>
|
|
359
|
-
|
|
360
|
-
<div class="config-block local apikey">
|
|
361
|
-
<p>Fill in the following fields:</p>
|
|
362
|
-
<table class="field-table">
|
|
363
|
-
<tr><td><strong>Name</strong></td><td><code>Nestr</code></td></tr>
|
|
364
|
-
<tr><td><strong>Transport</strong></td><td>Standard Input/Output</td></tr>
|
|
365
|
-
<tr><td><strong>Command</strong></td><td><code>npx</code></td></tr>
|
|
366
|
-
<tr><td><strong>Arguments</strong></td><td><code>-y @nestr/mcp</code></td></tr>
|
|
367
|
-
<tr><td><strong>Environment</strong></td><td>Click "Add Item" and add:<br><code>NESTR_API_KEY</code> = <code>your-api-key</code></td></tr>
|
|
368
|
-
</table>
|
|
369
|
-
</div>
|
|
370
|
-
|
|
371
|
-
<p>Save the server and it will be available in Raycast AI.</p>
|
|
372
|
-
</div>
|
|
373
335
|
</div>
|
|
374
336
|
</div>
|
|
375
337
|
|