@speakai/mcp-server 1.7.8 → 1.7.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/README.md +23 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,14 +136,34 @@ Still stuck? Email [success@speakai.co](mailto:success@speakai.co).
|
|
|
136
136
|
|
|
137
137
|
### Claude Code (terminal)
|
|
138
138
|
|
|
139
|
-
|
|
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
|
|
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
|
-
|
|
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speakai/mcp-server",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
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",
|