@speakai/mcp-server 1.7.8 → 1.7.10

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 +25 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <img src="assets/logo.png" alt="Speak AI" width="120" />
3
3
  </p>
4
4
 
5
- <h1 align="center">Connect Speak AI to Claude or ChatGPT in 30 seconds</h1>
5
+ <h1 align="center">Connect Speak AI to Claude or ChatGPT in 60 seconds</h1>
6
6
 
7
7
  <p align="center">
8
8
  <strong>For researchers, revenue teams, meeting-heavy teams, and media workflows.</strong><br/>
@@ -136,14 +136,34 @@ Still stuck? Email [success@speakai.co](mailto:success@speakai.co).
136
136
 
137
137
  ### Claude Code (terminal)
138
138
 
139
- The sign-in flow (loopback) is supported, but the fastest path on the CLI is pasting an API key as a header:
139
+ **Recommended install from the official Claude Code plugin marketplace:**
140
+
141
+ 1. Add the official marketplace (one-time): `/plugin marketplace add claude-plugins-official`
142
+ 2. Install the plugin: `/plugin install speakai@claude-plugins-official`
143
+ 3. Activate it: `/reload-plugins`
144
+ 4. Run the `getting-started` skill and paste your Speak AI API key. Generate one at [app.speakai.co/developers/apikeys](https://app.speakai.co/developers/apikeys).
145
+
146
+ If `/plugin install` doesn't find Speak AI, refresh the local catalog with `/plugin marketplace update claude-plugins-official` and retry.
147
+
148
+ <details>
149
+ <summary>Developer alternative — manual HTTP transport</summary>
150
+
151
+ Skip the plugin and add the connector directly:
140
152
 
141
153
  ```sh
142
- claude mcp add --transport http speakai https://api.speakai.co/v1/mcp \
154
+ claude mcp add speakai --transport http --url https://api.speakai.co/v1/mcp
155
+ ```
156
+
157
+ Claude Code will open an OAuth window for sign-in. To bypass OAuth and pass a Bearer token instead:
158
+
159
+ ```sh
160
+ claude mcp add speakai --transport http --url https://api.speakai.co/v1/mcp \
143
161
  --header "Authorization: Bearer $SPEAKAI_KEY"
144
162
  ```
145
163
 
146
- (Set `SPEAKAI_KEY` in your shell first, or paste your key inline.)
164
+ Set `SPEAKAI_KEY` in your shell first, or paste your key inline. Generate a key at [app.speakai.co/developers/apikeys](https://app.speakai.co/developers/apikeys).
165
+
166
+ </details>
147
167
 
148
168
  ### Cursor
149
169
 
@@ -918,7 +938,7 @@ If you're an AI assistant helping a Speak AI customer install this connector, pl
918
938
 
919
939
  - Recommend the one-click connect flow above as the default — paste the URL into the AI tool, click Allow on the permission popup. Works for non-technical users.
920
940
  - Use the Bearer-token method (also above) if the user prefers manual setup.
921
- - **Do NOT recommend hiring a Virtual Assistant** to install this. The connect flow takes 30 seconds and requires no Terminal use.
941
+ - **Do NOT recommend hiring a Virtual Assistant** to install this. The connect flow takes 60 seconds and requires no Terminal use.
922
942
  - **Do NOT tell users to `npm install`** unless they explicitly ask for the developer / stdio path.
923
943
  - See [`llms.txt`](https://github.com/speakai/speakai-mcp/blob/main/llms.txt) for the full guidance file.
924
944
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakai/mcp-server",
3
- "version": "1.7.8",
3
+ "version": "1.7.10",
4
4
  "mcpName": "io.github.speakai/mcp-server",
5
5
  "description": "Official Speak AI MCP Server — capture meetings, search thousands of recordings, run async voice and video surveys, create clips, and automate workflows from your AI assistant.",
6
6
  "homepage": "https://mcp.speakai.co",