@speakai/mcp-server 1.0.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.
Files changed (3) hide show
  1. package/README.md +329 -0
  2. package/dist/index.js +1688 -0
  3. package/package.json +39 -0
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@speakai/mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "Official Speak AI MCP Server — connect Claude and other AI assistants to Speak AI's transcription, insights, and media management API",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "speak-mcp": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup src/index.ts --format cjs --clean",
11
+ "start": "node dist/index.js",
12
+ "dev": "tsx src/index.ts",
13
+ "prepare": "npm run build"
14
+ },
15
+ "keywords": [
16
+ "mcp",
17
+ "speak-ai",
18
+ "transcription",
19
+ "ai",
20
+ "claude",
21
+ "model-context-protocol"
22
+ ],
23
+ "author": "Speak AI",
24
+ "license": "MIT",
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "dependencies": {
29
+ "@modelcontextprotocol/sdk": "^1.27.1",
30
+ "axios": "^1.6.0",
31
+ "zod": "^3.22.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^20.0.0",
35
+ "tsup": "^8.5.1",
36
+ "tsx": "^4.0.0",
37
+ "typescript": "^5.0.0"
38
+ }
39
+ }