forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
73 lines (73 loc) · 2.14 KB
/
Copy pathmanifest.json
File metadata and controls
73 lines (73 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"manifest_version": "0.3",
"name": "podcast-goat-pp-mcp",
"display_name": "Podcast GOAT",
"version": "4.8.0",
"description": "Podcast GOAT API surface as MCP tools.",
"author": {
"name": "CLI Printing Press"
},
"license": "Apache-2.0",
"server": {
"type": "binary",
"entry_point": "bin/podcast-goat-pp-mcp",
"mcp_config": {
"command": "${__dirname}/bin/podcast-goat-pp-mcp",
"args": [],
"env": {
"DEEPGRAM_API_KEY": "${user_config.deepgram_api_key}",
"ELEVENLABS_API_KEY": "${user_config.elevenlabs_api_key}",
"OPENAI_API_KEY": "${user_config.openai_api_key}",
"SPOKEN_API_KEY": "${user_config.spoken_api_key}",
"TADDY_API_KEY": "${user_config.taddy_api_key}",
"TADDY_USER_ID": "${user_config.taddy_user_id}"
}
}
},
"user_config": {
"deepgram_api_key": {
"type": "string",
"title": "DEEPGRAM_API_KEY",
"description": "Optional. Sets DEEPGRAM_API_KEY for the Podcast GOAT MCP server.",
"sensitive": true
},
"elevenlabs_api_key": {
"type": "string",
"title": "ELEVENLABS_API_KEY",
"description": "Optional. Sets ELEVENLABS_API_KEY for the Podcast GOAT MCP server.",
"sensitive": true
},
"openai_api_key": {
"type": "string",
"title": "OPENAI_API_KEY",
"description": "Optional. Sets OPENAI_API_KEY for the Podcast GOAT MCP server.",
"sensitive": true
},
"spoken_api_key": {
"type": "string",
"title": "SPOKEN_API_KEY",
"description": "Optional. Sets SPOKEN_API_KEY for the Podcast GOAT MCP server.",
"sensitive": true
},
"taddy_api_key": {
"type": "string",
"title": "TADDY_API_KEY",
"description": "Optional. Sets TADDY_API_KEY for the Podcast GOAT MCP server.",
"sensitive": true
},
"taddy_user_id": {
"type": "string",
"title": "TADDY_USER_ID",
"description": "Optional. Sets TADDY_USER_ID for the Podcast GOAT MCP server.",
"sensitive": true
}
},
"compatibility": {
"claude_desktop": ">=1.0.0",
"platforms": [
"darwin",
"linux",
"win32"
]
}
}