From e9743777a66a44a0a40f8ac7106374c06e7bb4f6 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 25 Jun 2026 11:32:45 +0800 Subject: [PATCH] Add Deepgram MCP server Signed-off-by: Mohammod Al Amin Ashik Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ --- servers/com.deepgram-mcp-uvx.json | 73 +++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 servers/com.deepgram-mcp-uvx.json diff --git a/servers/com.deepgram-mcp-uvx.json b/servers/com.deepgram-mcp-uvx.json new file mode 100644 index 0000000..94c26a4 --- /dev/null +++ b/servers/com.deepgram-mcp-uvx.json @@ -0,0 +1,73 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.deepgram-mcp-uvx", + "name": "Deepgram (uvx)", + "alias": "deepgram", + "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.", + "logo": "https://avatars.githubusercontent.com/u/17422641?v=4", + "schema_version": "2.1", + "categories": [ + "ai-ml" + ], + "tags": [ + "deepgram", + "speech-to-text", + "text-to-speech", + "transcription", + "voice", + "audio", + "ai-ml" + ], + "transport": { + "type": "stdio", + "command": "uvx", + "args": [ + "deepgram-mcp" + ], + "env": { + "DEEPGRAM_API_KEY": "${input:DEEPGRAM_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "DEEPGRAM_API_KEY", + "label": "Deepgram API Key", + "description": "API key used to authenticate with the Deepgram API. Create one in the Deepgram console.", + "type": "text", + "required": true, + "secret": true, + "placeholder": "********************************", + "obtain": { + "url": "https://console.deepgram.com", + "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", + "button_label": "Get API Key" + } + } + ] + } + }, + "auth": { + "type": "api_key", + "instructions": "Create a Deepgram API key in the console at https://console.deepgram.com and provide it as DEEPGRAM_API_KEY." + }, + "contributor": { + "name": "Deepgram", + "github": "deepgram", + "url": "https://deepgram.com" + }, + "links": { + "repository": "https://github.com/deepgram/mcp", + "homepage": "https://deepgram.com", + "documentation": "https://github.com/deepgram/mcp#readme" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + }, + "changelog_url": "https://github.com/deepgram/mcp/releases" +}