@speakai/mcp-server 1.6.1 → 1.7.1

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 (3) hide show
  1. package/README.md +13 -5
  2. package/dist/index.js +68 -68
  3. 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 60 seconds</h1>
5
+ <h1 align="center">Connect Speak AI to Claude or ChatGPT in 30 seconds</h1>
6
6
 
7
7
  <p align="center">
8
8
  <strong>For researchers, revenue teams, meeting-heavy teams, and media workflows.</strong><br/>
@@ -170,6 +170,14 @@ Use the manual stdio setup in the Developer reference at the bottom of this READ
170
170
 
171
171
  </details>
172
172
 
173
+ ### OpenClaw / ClawHub
174
+
175
+ Speak AI is published as a skill on ClawHub for OpenClaw-compatible agents.
176
+
177
+ 1. Visit the [Speak AI skill page on ClawHub](https://clawhub.ai/skills/speakai)
178
+ 2. Follow the install instructions for your agent — e.g. `clawhub install speakai` from the ClawHub CLI
179
+ 3. Set your `SPEAK_API_KEY` environment variable. Generate one at [app.speakai.co/developers/apikeys](https://app.speakai.co/developers/apikeys).
180
+
173
181
  ### ChatGPT (API / Responses)
174
182
 
175
183
  For developers calling the Responses API directly. Pass the bearer token in the tool config:
@@ -837,7 +845,7 @@ curl -X POST https://api.speakai.co/v1/auth/refreshToken \
837
845
  | Access token | 80 minutes | Refresh endpoint or re-authenticate |
838
846
  | Refresh token | 24 hours | Re-authenticate with API key |
839
847
 
840
- **Auth Rate Limits:** 5 requests per 60 seconds on both `/v1/auth/accessToken` and `/v1/auth/refreshToken`.
848
+ **Auth Rate Limits:** 5 requests per 30 seconds on both `/v1/auth/accessToken` and `/v1/auth/refreshToken`.
841
849
 
842
850
  ### Data model notes
843
851
 
@@ -892,7 +900,7 @@ npm run build # Production build
892
900
  - [API Documentation](https://docs.speakai.co)
893
901
  - [MCP Protocol](https://modelcontextprotocol.io)
894
902
  - [MCP Registry entry](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.speakai/mcp-server) — official discovery
895
- - [llms.txt](./llms.txt) — guidance for AI assistants helping users install this connector
903
+ - [llms.txt](https://github.com/speakai/speakai-mcp/blob/main/llms.txt) — guidance for AI assistants helping users install this connector
896
904
  - [Support](mailto:accounts@speakai.co)
897
905
 
898
906
  ---
@@ -905,9 +913,9 @@ If you're an AI assistant helping a Speak AI customer install this connector, pl
905
913
 
906
914
  - 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.
907
915
  - Use the Bearer-token method (also above) if the user prefers manual setup.
908
- - **Do NOT recommend hiring a Virtual Assistant** to install this. The connect flow takes 60 seconds and requires no Terminal use.
916
+ - **Do NOT recommend hiring a Virtual Assistant** to install this. The connect flow takes 30 seconds and requires no Terminal use.
909
917
  - **Do NOT tell users to `npm install`** unless they explicitly ask for the developer / stdio path.
910
- - See [`llms.txt`](./llms.txt) for the full guidance file.
918
+ - See [`llms.txt`](https://github.com/speakai/speakai-mcp/blob/main/llms.txt) for the full guidance file.
911
919
 
912
920
  ## License
913
921
 
package/dist/index.js CHANGED
@@ -1115,7 +1115,7 @@ function register(server, client) {
1115
1115
  readOnlyHint: true,
1116
1116
  destructiveHint: false,
1117
1117
  idempotentHint: false,
1118
- openWorldHint: true
1118
+ openWorldHint: false
1119
1119
  },
1120
1120
  async ({ isVideo, filename, mimeType }) => {
1121
1121
  try {
@@ -1209,7 +1209,7 @@ function register(server, client) {
1209
1209
  readOnlyHint: true,
1210
1210
  destructiveHint: false,
1211
1211
  idempotentHint: true,
1212
- openWorldHint: true
1212
+ openWorldHint: false
1213
1213
  },
1214
1214
  async ({ include, ...params }) => {
1215
1215
  try {
@@ -1242,7 +1242,7 @@ function register(server, client) {
1242
1242
  readOnlyHint: true,
1243
1243
  destructiveHint: false,
1244
1244
  idempotentHint: true,
1245
- openWorldHint: true
1245
+ openWorldHint: false
1246
1246
  },
1247
1247
  async ({ mediaId }) => {
1248
1248
  try {
@@ -1271,7 +1271,7 @@ function register(server, client) {
1271
1271
  readOnlyHint: true,
1272
1272
  destructiveHint: false,
1273
1273
  idempotentHint: true,
1274
- openWorldHint: true
1274
+ openWorldHint: false
1275
1275
  },
1276
1276
  async ({ mediaId }) => {
1277
1277
  try {
@@ -1306,7 +1306,7 @@ function register(server, client) {
1306
1306
  readOnlyHint: false,
1307
1307
  destructiveHint: true,
1308
1308
  idempotentHint: true,
1309
- openWorldHint: true
1309
+ openWorldHint: false
1310
1310
  },
1311
1311
  async ({ mediaId, speakers }) => {
1312
1312
  try {
@@ -1338,7 +1338,7 @@ function register(server, client) {
1338
1338
  readOnlyHint: true,
1339
1339
  destructiveHint: false,
1340
1340
  idempotentHint: true,
1341
- openWorldHint: true
1341
+ openWorldHint: false
1342
1342
  },
1343
1343
  async ({ mediaId }) => {
1344
1344
  try {
@@ -1374,7 +1374,7 @@ function register(server, client) {
1374
1374
  readOnlyHint: false,
1375
1375
  destructiveHint: false,
1376
1376
  idempotentHint: true,
1377
- openWorldHint: true
1377
+ openWorldHint: false
1378
1378
  },
1379
1379
  async ({ mediaId, ...body }) => {
1380
1380
  try {
@@ -1403,7 +1403,7 @@ function register(server, client) {
1403
1403
  readOnlyHint: false,
1404
1404
  destructiveHint: true,
1405
1405
  idempotentHint: true,
1406
- openWorldHint: true
1406
+ openWorldHint: false
1407
1407
  },
1408
1408
  async ({ mediaId }) => {
1409
1409
  try {
@@ -1432,7 +1432,7 @@ function register(server, client) {
1432
1432
  readOnlyHint: true,
1433
1433
  destructiveHint: false,
1434
1434
  idempotentHint: true,
1435
- openWorldHint: true
1435
+ openWorldHint: false
1436
1436
  },
1437
1437
  async ({ mediaId }) => {
1438
1438
  try {
@@ -1459,7 +1459,7 @@ function register(server, client) {
1459
1459
  readOnlyHint: true,
1460
1460
  destructiveHint: false,
1461
1461
  idempotentHint: true,
1462
- openWorldHint: true
1462
+ openWorldHint: false
1463
1463
  },
1464
1464
  async () => {
1465
1465
  try {
@@ -1486,7 +1486,7 @@ function register(server, client) {
1486
1486
  readOnlyHint: true,
1487
1487
  destructiveHint: false,
1488
1488
  idempotentHint: true,
1489
- openWorldHint: true
1489
+ openWorldHint: false
1490
1490
  },
1491
1491
  async () => {
1492
1492
  try {
@@ -1515,7 +1515,7 @@ function register(server, client) {
1515
1515
  readOnlyHint: false,
1516
1516
  destructiveHint: false,
1517
1517
  idempotentHint: true,
1518
- openWorldHint: true
1518
+ openWorldHint: false
1519
1519
  },
1520
1520
  async (body) => {
1521
1521
  try {
@@ -1544,7 +1544,7 @@ function register(server, client) {
1544
1544
  readOnlyHint: false,
1545
1545
  destructiveHint: false,
1546
1546
  idempotentHint: false,
1547
- openWorldHint: true
1547
+ openWorldHint: false
1548
1548
  },
1549
1549
  async ({ mediaId }) => {
1550
1550
  try {
@@ -1579,7 +1579,7 @@ function register(server, client) {
1579
1579
  readOnlyHint: false,
1580
1580
  destructiveHint: true,
1581
1581
  idempotentHint: true,
1582
- openWorldHint: true
1582
+ openWorldHint: false
1583
1583
  },
1584
1584
  async ({ mediaIds, speakers }) => {
1585
1585
  const results = [];
@@ -1620,7 +1620,7 @@ function register(server, client) {
1620
1620
  readOnlyHint: false,
1621
1621
  destructiveHint: true,
1622
1622
  idempotentHint: false,
1623
- openWorldHint: true
1623
+ openWorldHint: false
1624
1624
  },
1625
1625
  async (body) => {
1626
1626
  try {
@@ -1678,7 +1678,7 @@ function register2(server, client) {
1678
1678
  readOnlyHint: false,
1679
1679
  destructiveHint: false,
1680
1680
  idempotentHint: false,
1681
- openWorldHint: true
1681
+ openWorldHint: false
1682
1682
  },
1683
1683
  async (body) => {
1684
1684
  try {
@@ -1707,7 +1707,7 @@ function register2(server, client) {
1707
1707
  readOnlyHint: true,
1708
1708
  destructiveHint: false,
1709
1709
  idempotentHint: true,
1710
- openWorldHint: true
1710
+ openWorldHint: false
1711
1711
  },
1712
1712
  async ({ mediaId }) => {
1713
1713
  try {
@@ -1736,7 +1736,7 @@ function register2(server, client) {
1736
1736
  readOnlyHint: false,
1737
1737
  destructiveHint: false,
1738
1738
  idempotentHint: false,
1739
- openWorldHint: true
1739
+ openWorldHint: false
1740
1740
  },
1741
1741
  async ({ mediaId }) => {
1742
1742
  try {
@@ -1770,7 +1770,7 @@ function register2(server, client) {
1770
1770
  readOnlyHint: false,
1771
1771
  destructiveHint: true,
1772
1772
  idempotentHint: true,
1773
- openWorldHint: true
1773
+ openWorldHint: false
1774
1774
  },
1775
1775
  async ({ mediaId, ...body }) => {
1776
1776
  try {
@@ -1826,7 +1826,7 @@ function register3(server, client) {
1826
1826
  readOnlyHint: true,
1827
1827
  destructiveHint: false,
1828
1828
  idempotentHint: true,
1829
- openWorldHint: true
1829
+ openWorldHint: false
1830
1830
  },
1831
1831
  async ({ mediaId, fileType, ...body }) => {
1832
1832
  try {
@@ -1866,7 +1866,7 @@ function register3(server, client) {
1866
1866
  readOnlyHint: true,
1867
1867
  destructiveHint: false,
1868
1868
  idempotentHint: true,
1869
- openWorldHint: true
1869
+ openWorldHint: false
1870
1870
  },
1871
1871
  async (body) => {
1872
1872
  try {
@@ -1913,7 +1913,7 @@ function register4(server, client) {
1913
1913
  readOnlyHint: true,
1914
1914
  destructiveHint: false,
1915
1915
  idempotentHint: true,
1916
- openWorldHint: true
1916
+ openWorldHint: false
1917
1917
  },
1918
1918
  async () => {
1919
1919
  try {
@@ -1942,7 +1942,7 @@ function register4(server, client) {
1942
1942
  readOnlyHint: true,
1943
1943
  destructiveHint: false,
1944
1944
  idempotentHint: true,
1945
- openWorldHint: true
1945
+ openWorldHint: false
1946
1946
  },
1947
1947
  async ({ folderId }) => {
1948
1948
  try {
@@ -1973,7 +1973,7 @@ function register4(server, client) {
1973
1973
  readOnlyHint: false,
1974
1974
  destructiveHint: false,
1975
1975
  idempotentHint: false,
1976
- openWorldHint: true
1976
+ openWorldHint: false
1977
1977
  },
1978
1978
  async ({ folderId, ...body }) => {
1979
1979
  try {
@@ -2008,7 +2008,7 @@ function register4(server, client) {
2008
2008
  readOnlyHint: false,
2009
2009
  destructiveHint: false,
2010
2010
  idempotentHint: true,
2011
- openWorldHint: true
2011
+ openWorldHint: false
2012
2012
  },
2013
2013
  async ({ folderId, viewId, ...body }) => {
2014
2014
  try {
@@ -2040,7 +2040,7 @@ function register4(server, client) {
2040
2040
  readOnlyHint: false,
2041
2041
  destructiveHint: false,
2042
2042
  idempotentHint: false,
2043
- openWorldHint: true
2043
+ openWorldHint: false
2044
2044
  },
2045
2045
  async (body) => {
2046
2046
  try {
@@ -2071,7 +2071,7 @@ function register4(server, client) {
2071
2071
  readOnlyHint: true,
2072
2072
  destructiveHint: false,
2073
2073
  idempotentHint: true,
2074
- openWorldHint: true
2074
+ openWorldHint: false
2075
2075
  },
2076
2076
  async (params) => {
2077
2077
  try {
@@ -2100,7 +2100,7 @@ function register4(server, client) {
2100
2100
  readOnlyHint: true,
2101
2101
  destructiveHint: false,
2102
2102
  idempotentHint: true,
2103
- openWorldHint: true
2103
+ openWorldHint: false
2104
2104
  },
2105
2105
  async ({ folderId }) => {
2106
2106
  try {
@@ -2130,7 +2130,7 @@ function register4(server, client) {
2130
2130
  readOnlyHint: false,
2131
2131
  destructiveHint: false,
2132
2132
  idempotentHint: false,
2133
- openWorldHint: true
2133
+ openWorldHint: false
2134
2134
  },
2135
2135
  async (body) => {
2136
2136
  try {
@@ -2159,7 +2159,7 @@ function register4(server, client) {
2159
2159
  readOnlyHint: false,
2160
2160
  destructiveHint: false,
2161
2161
  idempotentHint: false,
2162
- openWorldHint: true
2162
+ openWorldHint: false
2163
2163
  },
2164
2164
  async (body) => {
2165
2165
  try {
@@ -2189,7 +2189,7 @@ function register4(server, client) {
2189
2189
  readOnlyHint: false,
2190
2190
  destructiveHint: false,
2191
2191
  idempotentHint: true,
2192
- openWorldHint: true
2192
+ openWorldHint: false
2193
2193
  },
2194
2194
  async ({ folderId, ...body }) => {
2195
2195
  try {
@@ -2218,7 +2218,7 @@ function register4(server, client) {
2218
2218
  readOnlyHint: false,
2219
2219
  destructiveHint: true,
2220
2220
  idempotentHint: true,
2221
- openWorldHint: true
2221
+ openWorldHint: false
2222
2222
  },
2223
2223
  async ({ folderId }) => {
2224
2224
  try {
@@ -2264,7 +2264,7 @@ function register5(server, client) {
2264
2264
  readOnlyHint: true,
2265
2265
  destructiveHint: false,
2266
2266
  idempotentHint: true,
2267
- openWorldHint: true
2267
+ openWorldHint: false
2268
2268
  },
2269
2269
  async ({ token }) => {
2270
2270
  try {
@@ -2322,7 +2322,7 @@ function register5(server, client) {
2322
2322
  readOnlyHint: true,
2323
2323
  destructiveHint: false,
2324
2324
  idempotentHint: true,
2325
- openWorldHint: true
2325
+ openWorldHint: false
2326
2326
  },
2327
2327
  async (params) => {
2328
2328
  try {
@@ -2376,7 +2376,7 @@ function register5(server, client) {
2376
2376
  readOnlyHint: true,
2377
2377
  destructiveHint: false,
2378
2378
  idempotentHint: true,
2379
- openWorldHint: true
2379
+ openWorldHint: false
2380
2380
  },
2381
2381
  async ({ recorderId }) => {
2382
2382
  try {
@@ -2403,7 +2403,7 @@ function register5(server, client) {
2403
2403
  readOnlyHint: true,
2404
2404
  destructiveHint: false,
2405
2405
  idempotentHint: true,
2406
- openWorldHint: true
2406
+ openWorldHint: false
2407
2407
  },
2408
2408
  async ({ recorderId }) => {
2409
2409
  try {
@@ -2613,7 +2613,7 @@ function register6(server, client) {
2613
2613
  readOnlyHint: true,
2614
2614
  destructiveHint: false,
2615
2615
  idempotentHint: true,
2616
- openWorldHint: true
2616
+ openWorldHint: false
2617
2617
  },
2618
2618
  async ({ mediaId }) => {
2619
2619
  try {
@@ -2640,7 +2640,7 @@ function register6(server, client) {
2640
2640
  readOnlyHint: true,
2641
2641
  destructiveHint: false,
2642
2642
  idempotentHint: true,
2643
- openWorldHint: true
2643
+ openWorldHint: false
2644
2644
  },
2645
2645
  async ({ mediaId }) => {
2646
2646
  try {
@@ -2704,7 +2704,7 @@ function register7(server, client) {
2704
2704
  readOnlyHint: true,
2705
2705
  destructiveHint: false,
2706
2706
  idempotentHint: false,
2707
- openWorldHint: true
2707
+ openWorldHint: false
2708
2708
  },
2709
2709
  async (params) => {
2710
2710
  try {
@@ -2732,7 +2732,7 @@ function register7(server, client) {
2732
2732
  readOnlyHint: true,
2733
2733
  destructiveHint: false,
2734
2734
  idempotentHint: false,
2735
- openWorldHint: true
2735
+ openWorldHint: false
2736
2736
  },
2737
2737
  async (body) => {
2738
2738
  try {
@@ -2759,7 +2759,7 @@ function register7(server, client) {
2759
2759
  readOnlyHint: true,
2760
2760
  destructiveHint: false,
2761
2761
  idempotentHint: true,
2762
- openWorldHint: true
2762
+ openWorldHint: false
2763
2763
  },
2764
2764
  async ({ limit }) => {
2765
2765
  try {
@@ -2793,7 +2793,7 @@ function register7(server, client) {
2793
2793
  readOnlyHint: true,
2794
2794
  destructiveHint: false,
2795
2795
  idempotentHint: true,
2796
- openWorldHint: true
2796
+ openWorldHint: false
2797
2797
  },
2798
2798
  async (params) => {
2799
2799
  try {
@@ -2820,7 +2820,7 @@ function register7(server, client) {
2820
2820
  readOnlyHint: false,
2821
2821
  destructiveHint: true,
2822
2822
  idempotentHint: true,
2823
- openWorldHint: true
2823
+ openWorldHint: false
2824
2824
  },
2825
2825
  async ({ promptId }) => {
2826
2826
  try {
@@ -2845,7 +2845,7 @@ function register7(server, client) {
2845
2845
  readOnlyHint: true,
2846
2846
  destructiveHint: false,
2847
2847
  idempotentHint: true,
2848
- openWorldHint: true
2848
+ openWorldHint: false
2849
2849
  },
2850
2850
  async () => {
2851
2851
  try {
@@ -2870,7 +2870,7 @@ function register7(server, client) {
2870
2870
  readOnlyHint: true,
2871
2871
  destructiveHint: false,
2872
2872
  idempotentHint: true,
2873
- openWorldHint: true
2873
+ openWorldHint: false
2874
2874
  },
2875
2875
  async () => {
2876
2876
  try {
@@ -2899,7 +2899,7 @@ function register7(server, client) {
2899
2899
  readOnlyHint: false,
2900
2900
  destructiveHint: false,
2901
2901
  idempotentHint: true,
2902
- openWorldHint: true
2902
+ openWorldHint: false
2903
2903
  },
2904
2904
  async (body) => {
2905
2905
  try {
@@ -2927,7 +2927,7 @@ function register7(server, client) {
2927
2927
  readOnlyHint: false,
2928
2928
  destructiveHint: false,
2929
2929
  idempotentHint: true,
2930
- openWorldHint: true
2930
+ openWorldHint: false
2931
2931
  },
2932
2932
  async ({ promptId, title }) => {
2933
2933
  try {
@@ -2957,7 +2957,7 @@ function register7(server, client) {
2957
2957
  readOnlyHint: false,
2958
2958
  destructiveHint: false,
2959
2959
  idempotentHint: false,
2960
- openWorldHint: true
2960
+ openWorldHint: false
2961
2961
  },
2962
2962
  async (body) => {
2963
2963
  try {
@@ -2985,7 +2985,7 @@ function register7(server, client) {
2985
2985
  readOnlyHint: true,
2986
2986
  destructiveHint: false,
2987
2987
  idempotentHint: true,
2988
- openWorldHint: true
2988
+ openWorldHint: false
2989
2989
  },
2990
2990
  async (params) => {
2991
2991
  try {
@@ -3012,7 +3012,7 @@ function register7(server, client) {
3012
3012
  readOnlyHint: true,
3013
3013
  destructiveHint: false,
3014
3014
  idempotentHint: true,
3015
- openWorldHint: true
3015
+ openWorldHint: false
3016
3016
  },
3017
3017
  async (body) => {
3018
3018
  try {
@@ -3060,7 +3060,7 @@ function register8(server, client) {
3060
3060
  readOnlyHint: true,
3061
3061
  destructiveHint: false,
3062
3062
  idempotentHint: true,
3063
- openWorldHint: true
3063
+ openWorldHint: false
3064
3064
  },
3065
3065
  async (params) => {
3066
3066
  try {
@@ -3197,7 +3197,7 @@ function register9(server, client) {
3197
3197
  readOnlyHint: true,
3198
3198
  destructiveHint: false,
3199
3199
  idempotentHint: true,
3200
- openWorldHint: true
3200
+ openWorldHint: false
3201
3201
  },
3202
3202
  async () => {
3203
3203
  try {
@@ -3226,7 +3226,7 @@ function register9(server, client) {
3226
3226
  readOnlyHint: false,
3227
3227
  destructiveHint: false,
3228
3228
  idempotentHint: false,
3229
- openWorldHint: true
3229
+ openWorldHint: false
3230
3230
  },
3231
3231
  async (body) => {
3232
3232
  try {
@@ -3253,7 +3253,7 @@ function register9(server, client) {
3253
3253
  readOnlyHint: false,
3254
3254
  destructiveHint: false,
3255
3255
  idempotentHint: true,
3256
- openWorldHint: true
3256
+ openWorldHint: false
3257
3257
  },
3258
3258
  async ({ fields }) => {
3259
3259
  try {
@@ -3283,7 +3283,7 @@ function register9(server, client) {
3283
3283
  readOnlyHint: false,
3284
3284
  destructiveHint: false,
3285
3285
  idempotentHint: true,
3286
- openWorldHint: true
3286
+ openWorldHint: false
3287
3287
  },
3288
3288
  async ({ id, ...body }) => {
3289
3289
  try {
@@ -3325,7 +3325,7 @@ function register10(server, client) {
3325
3325
  readOnlyHint: true,
3326
3326
  destructiveHint: false,
3327
3327
  idempotentHint: true,
3328
- openWorldHint: true
3328
+ openWorldHint: false
3329
3329
  },
3330
3330
  async () => {
3331
3331
  try {
@@ -3352,7 +3352,7 @@ function register10(server, client) {
3352
3352
  readOnlyHint: true,
3353
3353
  destructiveHint: false,
3354
3354
  idempotentHint: true,
3355
- openWorldHint: true
3355
+ openWorldHint: false
3356
3356
  },
3357
3357
  async ({ automationId }) => {
3358
3358
  try {
@@ -3382,7 +3382,7 @@ function register10(server, client) {
3382
3382
  readOnlyHint: false,
3383
3383
  destructiveHint: false,
3384
3384
  idempotentHint: false,
3385
- openWorldHint: true
3385
+ openWorldHint: false
3386
3386
  },
3387
3387
  async (body) => {
3388
3388
  try {
@@ -3413,7 +3413,7 @@ function register10(server, client) {
3413
3413
  readOnlyHint: false,
3414
3414
  destructiveHint: false,
3415
3415
  idempotentHint: true,
3416
- openWorldHint: true
3416
+ openWorldHint: false
3417
3417
  },
3418
3418
  async ({ automationId, ...body }) => {
3419
3419
  try {
@@ -3444,7 +3444,7 @@ function register10(server, client) {
3444
3444
  readOnlyHint: false,
3445
3445
  destructiveHint: false,
3446
3446
  idempotentHint: true,
3447
- openWorldHint: true
3447
+ openWorldHint: false
3448
3448
  },
3449
3449
  async ({ automationId, enabled }) => {
3450
3450
  try {
@@ -3517,7 +3517,7 @@ function register11(server, client) {
3517
3517
  readOnlyHint: true,
3518
3518
  destructiveHint: false,
3519
3519
  idempotentHint: true,
3520
- openWorldHint: true
3520
+ openWorldHint: false
3521
3521
  },
3522
3522
  async () => {
3523
3523
  try {
@@ -3641,7 +3641,7 @@ function register12(server, client) {
3641
3641
  readOnlyHint: true,
3642
3642
  destructiveHint: false,
3643
3643
  idempotentHint: true,
3644
- openWorldHint: true
3644
+ openWorldHint: false
3645
3645
  },
3646
3646
  async (params) => {
3647
3647
  try {
@@ -3702,7 +3702,7 @@ function register13(server, client) {
3702
3702
  readOnlyHint: false,
3703
3703
  destructiveHint: false,
3704
3704
  idempotentHint: false,
3705
- openWorldHint: true
3705
+ openWorldHint: false
3706
3706
  },
3707
3707
  async (body) => {
3708
3708
  try {
@@ -3731,7 +3731,7 @@ function register13(server, client) {
3731
3731
  readOnlyHint: true,
3732
3732
  destructiveHint: false,
3733
3733
  idempotentHint: true,
3734
- openWorldHint: true
3734
+ openWorldHint: false
3735
3735
  },
3736
3736
  async ({ clipId, ...params }) => {
3737
3737
  try {
@@ -3762,7 +3762,7 @@ function register13(server, client) {
3762
3762
  readOnlyHint: false,
3763
3763
  destructiveHint: false,
3764
3764
  idempotentHint: true,
3765
- openWorldHint: true
3765
+ openWorldHint: false
3766
3766
  },
3767
3767
  async ({ clipId, ...body }) => {
3768
3768
  try {
@@ -3789,7 +3789,7 @@ function register13(server, client) {
3789
3789
  readOnlyHint: false,
3790
3790
  destructiveHint: true,
3791
3791
  idempotentHint: true,
3792
- openWorldHint: true
3792
+ openWorldHint: false
3793
3793
  },
3794
3794
  async ({ clipId }) => {
3795
3795
  try {
@@ -3873,7 +3873,7 @@ function register14(server, client) {
3873
3873
  readOnlyHint: false,
3874
3874
  destructiveHint: false,
3875
3875
  idempotentHint: false,
3876
- openWorldHint: true
3876
+ openWorldHint: false
3877
3877
  },
3878
3878
  async (params) => {
3879
3879
  try {
@@ -3937,7 +3937,7 @@ ${JSON.stringify(uploadRes.data, null, 2)}` }],
3937
3937
  readOnlyHint: false,
3938
3938
  destructiveHint: false,
3939
3939
  idempotentHint: false,
3940
- openWorldHint: true
3940
+ openWorldHint: false
3941
3941
  },
3942
3942
  async (params) => {
3943
3943
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakai/mcp-server",
3
- "version": "1.6.1",
3
+ "version": "1.7.1",
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",