Skip to content

Commit e974377

Browse files
committed
Add Deepgram MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit e974377

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.deepgram-mcp-uvx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.deepgram-mcp-uvx",
4+
"name": "Deepgram (uvx)",
5+
"alias": "deepgram",
6+
"description": "Connect to Deepgram's speech-to-text, text-to-speech, and audio intelligence APIs. Tools are fetched from Deepgram's API at runtime, so new capabilities appear without a package upgrade.",
7+
"logo": "https://avatars.githubusercontent.com/u/17422641?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"deepgram",
14+
"speech-to-text",
15+
"text-to-speech",
16+
"transcription",
17+
"voice",
18+
"audio",
19+
"ai-ml"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"deepgram-mcp"
26+
],
27+
"env": {
28+
"DEEPGRAM_API_KEY": "${input:DEEPGRAM_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "DEEPGRAM_API_KEY",
34+
"label": "Deepgram API Key",
35+
"description": "API key used to authenticate with the Deepgram API. Create one in the Deepgram console.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "********************************",
40+
"obtain": {
41+
"url": "https://console.deepgram.com",
42+
"instructions": "1. Sign in to the Deepgram console at https://console.deepgram.com\n2. Open the API Keys section\n3. Create a new API key\n4. Copy the key and paste it here",
43+
"button_label": "Get API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create a Deepgram API key in the console at https://console.deepgram.com and provide it as DEEPGRAM_API_KEY."
52+
},
53+
"contributor": {
54+
"name": "Deepgram",
55+
"github": "deepgram",
56+
"url": "https://deepgram.com"
57+
},
58+
"links": {
59+
"repository": "https://github.com/deepgram/mcp",
60+
"homepage": "https://deepgram.com",
61+
"documentation": "https://github.com/deepgram/mcp#readme"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
},
72+
"changelog_url": "https://github.com/deepgram/mcp/releases"
73+
}

0 commit comments

Comments
 (0)