@speakai/mcp-server 1.5.2 → 1.6.0
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 +11 -11
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<h1 align="center">Connect Speak AI to Claude or ChatGPT in 60 seconds</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>For
|
|
8
|
+
<strong>For researchers, revenue teams, meeting-heavy teams, and media workflows.</strong><br/>
|
|
9
9
|
No Terminal. No npm. No JSON config files.
|
|
10
10
|
</p>
|
|
11
11
|
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
|
|
24
24
|
## What this does
|
|
25
25
|
|
|
26
|
-
Speak AI transcribes your interviews,
|
|
26
|
+
Speak AI transcribes your interviews, sales calls, research sessions, webinars, podcasts, and team meetings — then extracts AI insights like summaries, action items, sentiment, and themes.
|
|
27
27
|
|
|
28
28
|
This connector (built on MCP — the standard way Claude and ChatGPT connect to apps) brings all of that into Claude or ChatGPT. Once installed, you can ask:
|
|
29
29
|
|
|
30
|
-
- "
|
|
31
|
-
- "Summarize
|
|
32
|
-
- "
|
|
33
|
-
- "
|
|
30
|
+
- "Find the last 10 customer interviews that mention pricing, group the feedback by theme, and cite the source recordings."
|
|
31
|
+
- "Summarize this week's team meetings into decisions, action items, owners, and unresolved risks."
|
|
32
|
+
- "Pull exact customer quotes about onboarding friction from recent research calls and format them for a product brief."
|
|
33
|
+
- "Find a strong 30-second highlight from the latest webinar, create a clip, and export captions."
|
|
34
34
|
|
|
35
35
|
The AI does the searching, summarizing, and citing. Your recordings stay in your Speak AI workspace — Claude and ChatGPT just query them through this connector.
|
|
36
36
|
|
|
@@ -169,13 +169,13 @@ Speak AI ships 83 tools your AI assistant can call. You don't memorize them —
|
|
|
169
169
|
|
|
170
170
|
| Ask | Tools used (auto) |
|
|
171
171
|
|---|---|
|
|
172
|
-
| "Find
|
|
173
|
-
| "Summarize this week's
|
|
172
|
+
| "Find customer interviews about pricing and group the feedback by theme" | `search_media`, `ask_magic_prompt` |
|
|
173
|
+
| "Summarize this week's meetings into decisions, owners, and risks" | `list_media`, `get_media_insights` |
|
|
174
174
|
| "Pull action items from yesterday's call" | `get_media_insights`, `ask_magic_prompt` |
|
|
175
175
|
| "Schedule the AI to join my 2pm Zoom" | `schedule_meeting_event` |
|
|
176
|
-
| "
|
|
177
|
-
| "Export the transcript as a PDF" | `export_media` |
|
|
178
|
-
| "Compare
|
|
176
|
+
| "Find a 30-second webinar highlight and export captions" | `create_clip`, `export_media` |
|
|
177
|
+
| "Export the transcript as a PDF and captions as SRT" | `export_media` |
|
|
178
|
+
| "Compare Q1 sales calls against Q2 sales calls and summarize changed objections" | `search_media`, `ask_magic_prompt` |
|
|
179
179
|
|
|
180
180
|
Full tool catalog is in the developer reference below.
|
|
181
181
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speakai/mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"mcpName": "io.github.speakai/mcp-server",
|
|
5
5
|
"description": "Official Speak AI MCP Server — connect Claude and other AI assistants to Speak AI's transcription, insights, and media management API",
|
|
6
|
+
"homepage": "https://mcp.speakai.co",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/speakai/speakai-mcp.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/speakai/speakai-mcp/issues"
|
|
13
|
+
},
|
|
6
14
|
"main": "dist/index.js",
|
|
7
15
|
"types": "dist/index.d.ts",
|
|
8
16
|
"bin": {
|
|
@@ -25,7 +33,7 @@
|
|
|
25
33
|
"claude",
|
|
26
34
|
"model-context-protocol"
|
|
27
35
|
],
|
|
28
|
-
"author": "
|
|
36
|
+
"author": "Vatsal Shah",
|
|
29
37
|
"license": "MIT",
|
|
30
38
|
"engines": {
|
|
31
39
|
"node": ">=22"
|