mcp-server-jotbird 0.1.4 → 0.1.5
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 +14 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,11 +47,20 @@ claude mcp add jotbird -e JOTBIRD_API_KEY=jb_your_key_here -- npx -y mcp-server-
|
|
|
47
47
|
<details>
|
|
48
48
|
<summary><strong>ChatGPT</strong></summary>
|
|
49
49
|
|
|
50
|
-
ChatGPT
|
|
50
|
+
ChatGPT requires a remote (HTTP) MCP server — it doesn't support local stdio servers directly. You'll need to run a proxy that exposes the server over HTTP with a public tunnel:
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
```bash
|
|
53
|
+
JOTBIRD_API_KEY=jb_your_key_here npx mcp-proxy --shell --tunnel -- npx -y mcp-server-jotbird
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This starts the server and prints a public tunnel URL (e.g. `https://funny-eel-44.tunnel.gla.ma`).
|
|
57
|
+
|
|
58
|
+
Then in ChatGPT:
|
|
59
|
+
|
|
60
|
+
1. Go to **Settings > Apps > Advanced settings** and enable **Developer mode**
|
|
61
|
+
2. Click **New App**, give it a name, and paste the tunnel URL with `/mcp` appended (e.g. `https://funny-eel-44.tunnel.gla.ma/mcp`)
|
|
62
|
+
3. Set authentication to **No Auth** and click **Create**
|
|
63
|
+
4. In a new chat, select **Developer mode** from the model picker and enable the app
|
|
55
64
|
|
|
56
65
|
See [OpenAI's MCP docs](https://platform.openai.com/docs/mcp) for details.
|
|
57
66
|
|
|
@@ -79,7 +88,7 @@ Edit `.gemini/settings.json` (project-level) or `~/.gemini/settings.json` (globa
|
|
|
79
88
|
Or add via CLI:
|
|
80
89
|
|
|
81
90
|
```bash
|
|
82
|
-
gemini mcp add jotbird
|
|
91
|
+
gemini mcp add jotbird npx -e JOTBIRD_API_KEY=jb_your_key_here -- -y mcp-server-jotbird
|
|
83
92
|
```
|
|
84
93
|
|
|
85
94
|
See [Gemini CLI MCP docs](https://google-gemini.github.io/gemini-cli/docs/tools/mcp-server.html) for details.
|
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ import { z } from "zod";
|
|
|
16
16
|
// ---------------------------------------------------------------------------
|
|
17
17
|
// Configuration
|
|
18
18
|
// ---------------------------------------------------------------------------
|
|
19
|
-
const VERSION = "0.1.
|
|
19
|
+
const VERSION = "0.1.5";
|
|
20
20
|
// ---------------------------------------------------------------------------
|
|
21
21
|
// Argument schemas
|
|
22
22
|
// ---------------------------------------------------------------------------
|