{"id":49238073,"url":"https://github.com/deepgram/mcp","last_synced_at":"2026-04-24T17:37:47.522Z","repository":{"id":349144490,"uuid":"1201212117","full_name":"deepgram/mcp","owner":"deepgram","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-04T13:03:01.000Z","size":102,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T13:23:43.096Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deepgram.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-04T11:13:08.000Z","updated_at":"2026-04-04T12:06:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/deepgram/mcp","commit_stats":null,"previous_names":["deepgram/mcp"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/deepgram/mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepgram%2Fmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepgram%2Fmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepgram%2Fmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepgram%2Fmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deepgram","download_url":"https://codeload.github.com/deepgram/mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepgram%2Fmcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32234726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-24T17:37:46.936Z","updated_at":"2026-04-24T17:37:47.515Z","avatar_url":"https://github.com/deepgram.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deepgram-mcp\n\nDeepgram's [Model Context Protocol](https://modelcontextprotocol.io) server — gives AI editors (Claude Code, Cursor, Windsurf, and others) direct access to Deepgram's speech, transcription, and audio intelligence tools.\n\n**Standalone package.** Install `deepgram-mcp` directly if you want just the MCP server without the full CLI suite. If you already use the [Deepgram CLI](https://github.com/deepgram/cli) (`pip install deepctl`), `deepgram-mcp` is included as a dependency and the `dg mcp` command wraps it — no separate install needed.\n\n## Why deepgram-mcp is different\n\nMost MCP servers ship tools as hardcoded Python. When the provider adds a new tool, you must upgrade the package to get it.\n\n`deepgram-mcp` fetches its tool list from Deepgram's API at runtime. New tools appear in your editor the next time you connect — no package upgrade required.\n\n## Requirements\n\nA **Deepgram API key**. Get one free at [console.deepgram.com](https://console.deepgram.com).\n\nSet it as an environment variable:\n\n```bash\nexport DEEPGRAM_API_KEY=your_api_key_here\n```\n\n## Installation\n\n```bash\npip install deepgram-mcp\n```\n\n## Editor setup\n\n### Claude Code\n\nAdd to `.mcp.json` in your project root (or `~/.claude/mcp.json` for global):\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"deepgram-mcp\",\n      \"env\": {\n        \"DEEPGRAM_API_KEY\": \"your_api_key_here\"\n      }\n    }\n  }\n}\n```\n\nOr via CLI:\n\n```bash\nclaude mcp add deepgram -- deepgram-mcp\n```\n\n### Cursor\n\nAdd to `.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"deepgram-mcp\",\n      \"env\": {\n        \"DEEPGRAM_API_KEY\": \"your_api_key_here\"\n      }\n    }\n  }\n}\n```\n\n### Windsurf\n\nAdd to your Windsurf MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"deepgram-mcp\",\n      \"env\": {\n        \"DEEPGRAM_API_KEY\": \"your_api_key_here\"\n      }\n    }\n  }\n}\n```\n\n## Usage\n\n### stdio (default — for editor integration)\n\n```bash\ndeepgram-mcp --api-key your_api_key_here\n```\n\n### SSE (HTTP server)\n\n```bash\ndeepgram-mcp --transport sse --port 8000\n```\n\n### Options\n\n| Flag | Default | Description |\n|------|---------|-------------|\n| `--transport` | `stdio` | Transport mode: `stdio` or `sse` |\n| `--port` | `8000` | Port for SSE server |\n| `--host` | `127.0.0.1` | Host for SSE server |\n| `--api-key` | `$DEEPGRAM_API_KEY` | Deepgram API key |\n| `--base-url` | `https://api.dx.deepgram.com` | Deepgram developer API base URL |\n| `--debug` | `false` | Print debug info to stderr |\n\n## Use as a library\n\n```python\nimport asyncio\nfrom deepgram_mcp import run_proxy\n\nasyncio.run(run_proxy(\n    transport=\"stdio\",\n    host=\"127.0.0.1\",\n    port=8000,\n    api_key=\"your_api_key_here\",\n    base_url=\"https://api.dx.deepgram.com\",\n    debug=False,\n))\n```\n\n## Deepgram CLI\n\nIf you use the [Deepgram CLI](https://github.com/deepgram/cli), `dg mcp` wraps this package and handles authentication automatically:\n\n```bash\ndg mcp\ndg mcp --transport sse --port 8000\n```\n\n## License\n\nMIT — see [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepgram%2Fmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeepgram%2Fmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepgram%2Fmcp/lists"}