[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-setup-mcp":3,"mdc-1khbug-key":32,"related-org-deepgram-setup-mcp":1528,"related-repo-deepgram-setup-mcp":1689},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"setup-mcp","configure Deepgram MCP server","Set up the Deepgram MCP server for your AI coding tool. Checks whether the Deepgram CLI (dg\u002Fdeepctl) is installed: if so, uses the local CLI MCP server (dg mcp) for full tool access; otherwise offers the hosted documentation MCP or suggests installing the CLI. Use whenever someone wants to install Deepgram's agentic tools, set up the MCP server, or connect their editor to Deepgram.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,16,19],{"name":13,"slug":14,"type":15},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":20,"slug":21,"type":15},"Engineering","engineering",14,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fskills","2026-07-12T08:30:05.638123",null,3,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fsetup-mcp","---\nname: setup-mcp\ndescription: >\n  Set up the Deepgram MCP server for your AI coding tool. Checks whether the Deepgram CLI\n  (dg\u002Fdeepctl) is installed: if so, uses the local CLI MCP server (dg mcp) for full tool\n  access; otherwise offers the hosted documentation MCP or suggests installing the CLI.\n  Use whenever someone wants to install Deepgram's agentic tools, set up the MCP server,\n  or connect their editor to Deepgram.\n---\n\n# Install the Deepgram MCP Server\n\nYou are setting up Deepgram MCP integration for the user. Follow these steps:\n\n## Step 1: Check for the Deepgram CLI\n\nRun `dg --version` (or `deepctl --version`, or `where dg` on Windows) to check if the\nDeepgram CLI is installed.\n\n- **If found:** use the **local CLI MCP** (`dg mcp`) — this gives full access to Deepgram\n  tools including transcription, text-to-speech, project management, and more.\n- **If not found:** use the **hosted documentation MCP** and offer to install the CLI.\n\n## Step 2: Detect the environment\n\nDetermine which AI coding tool the user is running. Check for:\n\n- **Claude Code** — look for a `.claude\u002F` directory in the project or user home\n- **Cursor** — look for a `.cursor\u002F` directory in the project root\n- **Windsurf** — look for a `.windsurf\u002F` directory in the project root\n\nIf multiple are detected, or none are detected, ask the user which tool they want to configure.\n\n## Step 3: Ask about scope\n\nAsk the user whether they want the MCP server configured:\n- **For this project only** (recommended for team repos)\n- **Globally** (available in all projects)\n\n## Step 4: Install\n\n---\n\n### If the Deepgram CLI (`dg`) IS installed — use the local CLI MCP\n\n#### Claude Code\n\n```sh\n# Project scope\nclaude mcp add deepgram --scope project dg mcp\n\n# User\u002Fglobal scope\nclaude mcp add deepgram dg mcp\n```\n\n#### Cursor\n\nWrite or merge into the project's `.cursor\u002Fmcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"dg\",\n      \"args\": [\"mcp\"]\n    }\n  }\n}\n```\n\n#### Windsurf\n\nWrite or merge into the project's `.windsurf\u002Fmcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"dg\",\n      \"args\": [\"mcp\"]\n    }\n  }\n}\n```\n\n#### Other tools\n\nProvide the MCP server command and let them configure manually:\n\n- **Transport:** stdio\n- **Command:** `dg`\n- **Args:** `[\"mcp\"]`\n\n---\n\n### If the Deepgram CLI is NOT installed — use the hosted docs MCP\n\nTell the user:\n\n> The Deepgram CLI isn't installed. You can either:\n> 1. **Install the CLI** (`pipx install deepctl`) for full Deepgram tool access, then re-run `\u002Fdeepgram:setup-mcp`\n> 2. **Use the hosted MCP** for documentation queries right now\n\nIf they choose the hosted MCP (or want it alongside the CLI):\n\n#### Claude Code\n\n```sh\n# Project scope\nclaude mcp add deepgram-docs --scope project --transport http https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\n\n# User\u002Fglobal scope\nclaude mcp add deepgram-docs --transport http https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\n```\n\n#### Cursor\n\nWrite or merge into the project's `.cursor\u002Fmcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram-docs\": {\n      \"type\": \"http\",\n      \"url\": \"https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\"\n    }\n  }\n}\n```\n\n#### Windsurf\n\nWrite or merge into the project's `.windsurf\u002Fmcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepgram-docs\": {\n      \"type\": \"http\",\n      \"url\": \"https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\"\n    }\n  }\n}\n```\n\n#### Other tools\n\nProvide the MCP server details and let them configure manually:\n\n- **Type:** HTTP\n- **URL:** `https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp`\n\n---\n\n## Step 5: Confirm\n\nAfter installation:\n\n- **Claude Code** — run `\u002Freload-plugins` to activate immediately, no restart needed.\n- **Cursor \u002F Windsurf \u002F Other** — the user may need to restart or reload their tool.\n\nThen tell the user:\n\n> The Deepgram MCP server is now configured.\n\nIf using the CLI MCP (`dg mcp`), add:\n> Available tools include transcription, text-to-speech, project management, and usage\n> queries. Try asking to transcribe an audio file or convert text to speech.\n\nIf using the hosted docs MCP, add:\n> Your tool can now query Deepgram's full documentation directly — try asking about API\n> parameters, voice agents, or model capabilities.\n\nLink them to [Deepgram Agentic Tools](https:\u002F\u002Fdevelopers.deepgram.com\u002Fagentic-tools) for more details.\n\n## Troubleshooting\n\nIf the MCP server fails to connect:\n\n1. For the CLI MCP: verify `dg --version` works and `dg mcp` runs without errors. Update\n   with `pipx upgrade deepctl` or `pip install --upgrade deepctl`.\n2. For the hosted MCP: verify the URL `https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp` is accessible.\n3. To install the CLI: `pipx install deepctl`\n",{"data":33,"body":34},{"name":4,"description":6},{"type":35,"children":36},"root",[37,46,52,59,89,136,142,147,201,206,212,217,240,246,250,265,271,386,391,404,583,588,599,753,759,764,807,810,816,821,867,872,877,979,984,994,1147,1152,1162,1308,1313,1318,1345,1348,1354,1359,1389,1394,1402,1414,1422,1427,1435,1451,1457,1462,1522],{"type":38,"tag":39,"props":40,"children":42},"element","h1",{"id":41},"install-the-deepgram-mcp-server",[43],{"type":44,"value":45},"text","Install the Deepgram MCP Server",{"type":38,"tag":47,"props":48,"children":49},"p",{},[50],{"type":44,"value":51},"You are setting up Deepgram MCP integration for the user. Follow these steps:",{"type":38,"tag":53,"props":54,"children":56},"h2",{"id":55},"step-1-check-for-the-deepgram-cli",[57],{"type":44,"value":58},"Step 1: Check for the Deepgram CLI",{"type":38,"tag":47,"props":60,"children":61},{},[62,64,71,73,79,81,87],{"type":44,"value":63},"Run ",{"type":38,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":44,"value":70},"dg --version",{"type":44,"value":72}," (or ",{"type":38,"tag":65,"props":74,"children":76},{"className":75},[],[77],{"type":44,"value":78},"deepctl --version",{"type":44,"value":80},", or ",{"type":38,"tag":65,"props":82,"children":84},{"className":83},[],[85],{"type":44,"value":86},"where dg",{"type":44,"value":88}," on Windows) to check if the\nDeepgram CLI is installed.",{"type":38,"tag":90,"props":91,"children":92},"ul",{},[93,120],{"type":38,"tag":94,"props":95,"children":96},"li",{},[97,103,105,110,112,118],{"type":38,"tag":98,"props":99,"children":100},"strong",{},[101],{"type":44,"value":102},"If found:",{"type":44,"value":104}," use the ",{"type":38,"tag":98,"props":106,"children":107},{},[108],{"type":44,"value":109},"local CLI MCP",{"type":44,"value":111}," (",{"type":38,"tag":65,"props":113,"children":115},{"className":114},[],[116],{"type":44,"value":117},"dg mcp",{"type":44,"value":119},") — this gives full access to Deepgram\ntools including transcription, text-to-speech, project management, and more.",{"type":38,"tag":94,"props":121,"children":122},{},[123,128,129,134],{"type":38,"tag":98,"props":124,"children":125},{},[126],{"type":44,"value":127},"If not found:",{"type":44,"value":104},{"type":38,"tag":98,"props":130,"children":131},{},[132],{"type":44,"value":133},"hosted documentation MCP",{"type":44,"value":135}," and offer to install the CLI.",{"type":38,"tag":53,"props":137,"children":139},{"id":138},"step-2-detect-the-environment",[140],{"type":44,"value":141},"Step 2: Detect the environment",{"type":38,"tag":47,"props":143,"children":144},{},[145],{"type":44,"value":146},"Determine which AI coding tool the user is running. Check for:",{"type":38,"tag":90,"props":148,"children":149},{},[150,168,185],{"type":38,"tag":94,"props":151,"children":152},{},[153,158,160,166],{"type":38,"tag":98,"props":154,"children":155},{},[156],{"type":44,"value":157},"Claude Code",{"type":44,"value":159}," — look for a ",{"type":38,"tag":65,"props":161,"children":163},{"className":162},[],[164],{"type":44,"value":165},".claude\u002F",{"type":44,"value":167}," directory in the project or user home",{"type":38,"tag":94,"props":169,"children":170},{},[171,176,177,183],{"type":38,"tag":98,"props":172,"children":173},{},[174],{"type":44,"value":175},"Cursor",{"type":44,"value":159},{"type":38,"tag":65,"props":178,"children":180},{"className":179},[],[181],{"type":44,"value":182},".cursor\u002F",{"type":44,"value":184}," directory in the project root",{"type":38,"tag":94,"props":186,"children":187},{},[188,193,194,200],{"type":38,"tag":98,"props":189,"children":190},{},[191],{"type":44,"value":192},"Windsurf",{"type":44,"value":159},{"type":38,"tag":65,"props":195,"children":197},{"className":196},[],[198],{"type":44,"value":199},".windsurf\u002F",{"type":44,"value":184},{"type":38,"tag":47,"props":202,"children":203},{},[204],{"type":44,"value":205},"If multiple are detected, or none are detected, ask the user which tool they want to configure.",{"type":38,"tag":53,"props":207,"children":209},{"id":208},"step-3-ask-about-scope",[210],{"type":44,"value":211},"Step 3: Ask about scope",{"type":38,"tag":47,"props":213,"children":214},{},[215],{"type":44,"value":216},"Ask the user whether they want the MCP server configured:",{"type":38,"tag":90,"props":218,"children":219},{},[220,230],{"type":38,"tag":94,"props":221,"children":222},{},[223,228],{"type":38,"tag":98,"props":224,"children":225},{},[226],{"type":44,"value":227},"For this project only",{"type":44,"value":229}," (recommended for team repos)",{"type":38,"tag":94,"props":231,"children":232},{},[233,238],{"type":38,"tag":98,"props":234,"children":235},{},[236],{"type":44,"value":237},"Globally",{"type":44,"value":239}," (available in all projects)",{"type":38,"tag":53,"props":241,"children":243},{"id":242},"step-4-install",[244],{"type":44,"value":245},"Step 4: Install",{"type":38,"tag":247,"props":248,"children":249},"hr",{},[],{"type":38,"tag":251,"props":252,"children":254},"h3",{"id":253},"if-the-deepgram-cli-dg-is-installed-use-the-local-cli-mcp",[255,257,263],{"type":44,"value":256},"If the Deepgram CLI (",{"type":38,"tag":65,"props":258,"children":260},{"className":259},[],[261],{"type":44,"value":262},"dg",{"type":44,"value":264},") IS installed — use the local CLI MCP",{"type":38,"tag":266,"props":267,"children":269},"h4",{"id":268},"claude-code",[270],{"type":44,"value":157},{"type":38,"tag":272,"props":273,"children":278},"pre",{"className":274,"code":275,"language":276,"meta":277,"style":277},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Project scope\nclaude mcp add deepgram --scope project dg mcp\n\n# User\u002Fglobal scope\nclaude mcp add deepgram dg mcp\n","sh","",[279],{"type":38,"tag":65,"props":280,"children":281},{"__ignoreMap":277},[282,294,340,349,358],{"type":38,"tag":283,"props":284,"children":287},"span",{"class":285,"line":286},"line",1,[288],{"type":38,"tag":283,"props":289,"children":291},{"style":290},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[292],{"type":44,"value":293},"# Project scope\n",{"type":38,"tag":283,"props":295,"children":297},{"class":285,"line":296},2,[298,304,310,315,320,325,330,335],{"type":38,"tag":283,"props":299,"children":301},{"style":300},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[302],{"type":44,"value":303},"claude",{"type":38,"tag":283,"props":305,"children":307},{"style":306},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[308],{"type":44,"value":309}," mcp",{"type":38,"tag":283,"props":311,"children":312},{"style":306},[313],{"type":44,"value":314}," add",{"type":38,"tag":283,"props":316,"children":317},{"style":306},[318],{"type":44,"value":319}," deepgram",{"type":38,"tag":283,"props":321,"children":322},{"style":306},[323],{"type":44,"value":324}," --scope",{"type":38,"tag":283,"props":326,"children":327},{"style":306},[328],{"type":44,"value":329}," project",{"type":38,"tag":283,"props":331,"children":332},{"style":306},[333],{"type":44,"value":334}," dg",{"type":38,"tag":283,"props":336,"children":337},{"style":306},[338],{"type":44,"value":339}," mcp\n",{"type":38,"tag":283,"props":341,"children":342},{"class":285,"line":26},[343],{"type":38,"tag":283,"props":344,"children":346},{"emptyLinePlaceholder":345},true,[347],{"type":44,"value":348},"\n",{"type":38,"tag":283,"props":350,"children":352},{"class":285,"line":351},4,[353],{"type":38,"tag":283,"props":354,"children":355},{"style":290},[356],{"type":44,"value":357},"# User\u002Fglobal scope\n",{"type":38,"tag":283,"props":359,"children":361},{"class":285,"line":360},5,[362,366,370,374,378,382],{"type":38,"tag":283,"props":363,"children":364},{"style":300},[365],{"type":44,"value":303},{"type":38,"tag":283,"props":367,"children":368},{"style":306},[369],{"type":44,"value":309},{"type":38,"tag":283,"props":371,"children":372},{"style":306},[373],{"type":44,"value":314},{"type":38,"tag":283,"props":375,"children":376},{"style":306},[377],{"type":44,"value":319},{"type":38,"tag":283,"props":379,"children":380},{"style":306},[381],{"type":44,"value":334},{"type":38,"tag":283,"props":383,"children":384},{"style":306},[385],{"type":44,"value":339},{"type":38,"tag":266,"props":387,"children":389},{"id":388},"cursor",[390],{"type":44,"value":175},{"type":38,"tag":47,"props":392,"children":393},{},[394,396,402],{"type":44,"value":395},"Write or merge into the project's ",{"type":38,"tag":65,"props":397,"children":399},{"className":398},[],[400],{"type":44,"value":401},".cursor\u002Fmcp.json",{"type":44,"value":403},":",{"type":38,"tag":272,"props":405,"children":409},{"className":406,"code":407,"language":408,"meta":277,"style":277},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"deepgram\": {\n      \"command\": \"dg\",\n      \"args\": [\"mcp\"]\n    }\n  }\n}\n","json",[410],{"type":38,"tag":65,"props":411,"children":412},{"__ignoreMap":277},[413,422,450,474,514,556,565,574],{"type":38,"tag":283,"props":414,"children":415},{"class":285,"line":286},[416],{"type":38,"tag":283,"props":417,"children":419},{"style":418},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[420],{"type":44,"value":421},"{\n",{"type":38,"tag":283,"props":423,"children":424},{"class":285,"line":296},[425,430,436,441,445],{"type":38,"tag":283,"props":426,"children":427},{"style":418},[428],{"type":44,"value":429},"  \"",{"type":38,"tag":283,"props":431,"children":433},{"style":432},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[434],{"type":44,"value":435},"mcpServers",{"type":38,"tag":283,"props":437,"children":438},{"style":418},[439],{"type":44,"value":440},"\"",{"type":38,"tag":283,"props":442,"children":443},{"style":418},[444],{"type":44,"value":403},{"type":38,"tag":283,"props":446,"children":447},{"style":418},[448],{"type":44,"value":449}," {\n",{"type":38,"tag":283,"props":451,"children":452},{"class":285,"line":26},[453,458,462,466,470],{"type":38,"tag":283,"props":454,"children":455},{"style":418},[456],{"type":44,"value":457},"    \"",{"type":38,"tag":283,"props":459,"children":460},{"style":300},[461],{"type":44,"value":8},{"type":38,"tag":283,"props":463,"children":464},{"style":418},[465],{"type":44,"value":440},{"type":38,"tag":283,"props":467,"children":468},{"style":418},[469],{"type":44,"value":403},{"type":38,"tag":283,"props":471,"children":472},{"style":418},[473],{"type":44,"value":449},{"type":38,"tag":283,"props":475,"children":476},{"class":285,"line":351},[477,482,488,492,496,501,505,509],{"type":38,"tag":283,"props":478,"children":479},{"style":418},[480],{"type":44,"value":481},"      \"",{"type":38,"tag":283,"props":483,"children":485},{"style":484},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[486],{"type":44,"value":487},"command",{"type":38,"tag":283,"props":489,"children":490},{"style":418},[491],{"type":44,"value":440},{"type":38,"tag":283,"props":493,"children":494},{"style":418},[495],{"type":44,"value":403},{"type":38,"tag":283,"props":497,"children":498},{"style":418},[499],{"type":44,"value":500}," \"",{"type":38,"tag":283,"props":502,"children":503},{"style":306},[504],{"type":44,"value":262},{"type":38,"tag":283,"props":506,"children":507},{"style":418},[508],{"type":44,"value":440},{"type":38,"tag":283,"props":510,"children":511},{"style":418},[512],{"type":44,"value":513},",\n",{"type":38,"tag":283,"props":515,"children":516},{"class":285,"line":360},[517,521,526,530,534,539,543,547,551],{"type":38,"tag":283,"props":518,"children":519},{"style":418},[520],{"type":44,"value":481},{"type":38,"tag":283,"props":522,"children":523},{"style":484},[524],{"type":44,"value":525},"args",{"type":38,"tag":283,"props":527,"children":528},{"style":418},[529],{"type":44,"value":440},{"type":38,"tag":283,"props":531,"children":532},{"style":418},[533],{"type":44,"value":403},{"type":38,"tag":283,"props":535,"children":536},{"style":418},[537],{"type":44,"value":538}," [",{"type":38,"tag":283,"props":540,"children":541},{"style":418},[542],{"type":44,"value":440},{"type":38,"tag":283,"props":544,"children":545},{"style":306},[546],{"type":44,"value":18},{"type":38,"tag":283,"props":548,"children":549},{"style":418},[550],{"type":44,"value":440},{"type":38,"tag":283,"props":552,"children":553},{"style":418},[554],{"type":44,"value":555},"]\n",{"type":38,"tag":283,"props":557,"children":559},{"class":285,"line":558},6,[560],{"type":38,"tag":283,"props":561,"children":562},{"style":418},[563],{"type":44,"value":564},"    }\n",{"type":38,"tag":283,"props":566,"children":568},{"class":285,"line":567},7,[569],{"type":38,"tag":283,"props":570,"children":571},{"style":418},[572],{"type":44,"value":573},"  }\n",{"type":38,"tag":283,"props":575,"children":577},{"class":285,"line":576},8,[578],{"type":38,"tag":283,"props":579,"children":580},{"style":418},[581],{"type":44,"value":582},"}\n",{"type":38,"tag":266,"props":584,"children":586},{"id":585},"windsurf",[587],{"type":44,"value":192},{"type":38,"tag":47,"props":589,"children":590},{},[591,592,598],{"type":44,"value":395},{"type":38,"tag":65,"props":593,"children":595},{"className":594},[],[596],{"type":44,"value":597},".windsurf\u002Fmcp.json",{"type":44,"value":403},{"type":38,"tag":272,"props":600,"children":601},{"className":406,"code":407,"language":408,"meta":277,"style":277},[602],{"type":38,"tag":65,"props":603,"children":604},{"__ignoreMap":277},[605,612,635,658,693,732,739,746],{"type":38,"tag":283,"props":606,"children":607},{"class":285,"line":286},[608],{"type":38,"tag":283,"props":609,"children":610},{"style":418},[611],{"type":44,"value":421},{"type":38,"tag":283,"props":613,"children":614},{"class":285,"line":296},[615,619,623,627,631],{"type":38,"tag":283,"props":616,"children":617},{"style":418},[618],{"type":44,"value":429},{"type":38,"tag":283,"props":620,"children":621},{"style":432},[622],{"type":44,"value":435},{"type":38,"tag":283,"props":624,"children":625},{"style":418},[626],{"type":44,"value":440},{"type":38,"tag":283,"props":628,"children":629},{"style":418},[630],{"type":44,"value":403},{"type":38,"tag":283,"props":632,"children":633},{"style":418},[634],{"type":44,"value":449},{"type":38,"tag":283,"props":636,"children":637},{"class":285,"line":26},[638,642,646,650,654],{"type":38,"tag":283,"props":639,"children":640},{"style":418},[641],{"type":44,"value":457},{"type":38,"tag":283,"props":643,"children":644},{"style":300},[645],{"type":44,"value":8},{"type":38,"tag":283,"props":647,"children":648},{"style":418},[649],{"type":44,"value":440},{"type":38,"tag":283,"props":651,"children":652},{"style":418},[653],{"type":44,"value":403},{"type":38,"tag":283,"props":655,"children":656},{"style":418},[657],{"type":44,"value":449},{"type":38,"tag":283,"props":659,"children":660},{"class":285,"line":351},[661,665,669,673,677,681,685,689],{"type":38,"tag":283,"props":662,"children":663},{"style":418},[664],{"type":44,"value":481},{"type":38,"tag":283,"props":666,"children":667},{"style":484},[668],{"type":44,"value":487},{"type":38,"tag":283,"props":670,"children":671},{"style":418},[672],{"type":44,"value":440},{"type":38,"tag":283,"props":674,"children":675},{"style":418},[676],{"type":44,"value":403},{"type":38,"tag":283,"props":678,"children":679},{"style":418},[680],{"type":44,"value":500},{"type":38,"tag":283,"props":682,"children":683},{"style":306},[684],{"type":44,"value":262},{"type":38,"tag":283,"props":686,"children":687},{"style":418},[688],{"type":44,"value":440},{"type":38,"tag":283,"props":690,"children":691},{"style":418},[692],{"type":44,"value":513},{"type":38,"tag":283,"props":694,"children":695},{"class":285,"line":360},[696,700,704,708,712,716,720,724,728],{"type":38,"tag":283,"props":697,"children":698},{"style":418},[699],{"type":44,"value":481},{"type":38,"tag":283,"props":701,"children":702},{"style":484},[703],{"type":44,"value":525},{"type":38,"tag":283,"props":705,"children":706},{"style":418},[707],{"type":44,"value":440},{"type":38,"tag":283,"props":709,"children":710},{"style":418},[711],{"type":44,"value":403},{"type":38,"tag":283,"props":713,"children":714},{"style":418},[715],{"type":44,"value":538},{"type":38,"tag":283,"props":717,"children":718},{"style":418},[719],{"type":44,"value":440},{"type":38,"tag":283,"props":721,"children":722},{"style":306},[723],{"type":44,"value":18},{"type":38,"tag":283,"props":725,"children":726},{"style":418},[727],{"type":44,"value":440},{"type":38,"tag":283,"props":729,"children":730},{"style":418},[731],{"type":44,"value":555},{"type":38,"tag":283,"props":733,"children":734},{"class":285,"line":558},[735],{"type":38,"tag":283,"props":736,"children":737},{"style":418},[738],{"type":44,"value":564},{"type":38,"tag":283,"props":740,"children":741},{"class":285,"line":567},[742],{"type":38,"tag":283,"props":743,"children":744},{"style":418},[745],{"type":44,"value":573},{"type":38,"tag":283,"props":747,"children":748},{"class":285,"line":576},[749],{"type":38,"tag":283,"props":750,"children":751},{"style":418},[752],{"type":44,"value":582},{"type":38,"tag":266,"props":754,"children":756},{"id":755},"other-tools",[757],{"type":44,"value":758},"Other tools",{"type":38,"tag":47,"props":760,"children":761},{},[762],{"type":44,"value":763},"Provide the MCP server command and let them configure manually:",{"type":38,"tag":90,"props":765,"children":766},{},[767,777,792],{"type":38,"tag":94,"props":768,"children":769},{},[770,775],{"type":38,"tag":98,"props":771,"children":772},{},[773],{"type":44,"value":774},"Transport:",{"type":44,"value":776}," stdio",{"type":38,"tag":94,"props":778,"children":779},{},[780,785,787],{"type":38,"tag":98,"props":781,"children":782},{},[783],{"type":44,"value":784},"Command:",{"type":44,"value":786}," ",{"type":38,"tag":65,"props":788,"children":790},{"className":789},[],[791],{"type":44,"value":262},{"type":38,"tag":94,"props":793,"children":794},{},[795,800,801],{"type":38,"tag":98,"props":796,"children":797},{},[798],{"type":44,"value":799},"Args:",{"type":44,"value":786},{"type":38,"tag":65,"props":802,"children":804},{"className":803},[],[805],{"type":44,"value":806},"[\"mcp\"]",{"type":38,"tag":247,"props":808,"children":809},{},[],{"type":38,"tag":251,"props":811,"children":813},{"id":812},"if-the-deepgram-cli-is-not-installed-use-the-hosted-docs-mcp",[814],{"type":44,"value":815},"If the Deepgram CLI is NOT installed — use the hosted docs MCP",{"type":38,"tag":47,"props":817,"children":818},{},[819],{"type":44,"value":820},"Tell the user:",{"type":38,"tag":822,"props":823,"children":824},"blockquote",{},[825,830],{"type":38,"tag":47,"props":826,"children":827},{},[828],{"type":44,"value":829},"The Deepgram CLI isn't installed. You can either:",{"type":38,"tag":831,"props":832,"children":833},"ol",{},[834,857],{"type":38,"tag":94,"props":835,"children":836},{},[837,842,843,849,851],{"type":38,"tag":98,"props":838,"children":839},{},[840],{"type":44,"value":841},"Install the CLI",{"type":44,"value":111},{"type":38,"tag":65,"props":844,"children":846},{"className":845},[],[847],{"type":44,"value":848},"pipx install deepctl",{"type":44,"value":850},") for full Deepgram tool access, then re-run ",{"type":38,"tag":65,"props":852,"children":854},{"className":853},[],[855],{"type":44,"value":856},"\u002Fdeepgram:setup-mcp",{"type":38,"tag":94,"props":858,"children":859},{},[860,865],{"type":38,"tag":98,"props":861,"children":862},{},[863],{"type":44,"value":864},"Use the hosted MCP",{"type":44,"value":866}," for documentation queries right now",{"type":38,"tag":47,"props":868,"children":869},{},[870],{"type":44,"value":871},"If they choose the hosted MCP (or want it alongside the CLI):",{"type":38,"tag":266,"props":873,"children":875},{"id":874},"claude-code-1",[876],{"type":44,"value":157},{"type":38,"tag":272,"props":878,"children":880},{"className":274,"code":879,"language":276,"meta":277,"style":277},"# Project scope\nclaude mcp add deepgram-docs --scope project --transport http https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\n\n# User\u002Fglobal scope\nclaude mcp add deepgram-docs --transport http https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\n",[881],{"type":38,"tag":65,"props":882,"children":883},{"__ignoreMap":277},[884,891,934,941,948],{"type":38,"tag":283,"props":885,"children":886},{"class":285,"line":286},[887],{"type":38,"tag":283,"props":888,"children":889},{"style":290},[890],{"type":44,"value":293},{"type":38,"tag":283,"props":892,"children":893},{"class":285,"line":296},[894,898,902,906,911,915,919,924,929],{"type":38,"tag":283,"props":895,"children":896},{"style":300},[897],{"type":44,"value":303},{"type":38,"tag":283,"props":899,"children":900},{"style":306},[901],{"type":44,"value":309},{"type":38,"tag":283,"props":903,"children":904},{"style":306},[905],{"type":44,"value":314},{"type":38,"tag":283,"props":907,"children":908},{"style":306},[909],{"type":44,"value":910}," deepgram-docs",{"type":38,"tag":283,"props":912,"children":913},{"style":306},[914],{"type":44,"value":324},{"type":38,"tag":283,"props":916,"children":917},{"style":306},[918],{"type":44,"value":329},{"type":38,"tag":283,"props":920,"children":921},{"style":306},[922],{"type":44,"value":923}," --transport",{"type":38,"tag":283,"props":925,"children":926},{"style":306},[927],{"type":44,"value":928}," http",{"type":38,"tag":283,"props":930,"children":931},{"style":306},[932],{"type":44,"value":933}," https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\n",{"type":38,"tag":283,"props":935,"children":936},{"class":285,"line":26},[937],{"type":38,"tag":283,"props":938,"children":939},{"emptyLinePlaceholder":345},[940],{"type":44,"value":348},{"type":38,"tag":283,"props":942,"children":943},{"class":285,"line":351},[944],{"type":38,"tag":283,"props":945,"children":946},{"style":290},[947],{"type":44,"value":357},{"type":38,"tag":283,"props":949,"children":950},{"class":285,"line":360},[951,955,959,963,967,971,975],{"type":38,"tag":283,"props":952,"children":953},{"style":300},[954],{"type":44,"value":303},{"type":38,"tag":283,"props":956,"children":957},{"style":306},[958],{"type":44,"value":309},{"type":38,"tag":283,"props":960,"children":961},{"style":306},[962],{"type":44,"value":314},{"type":38,"tag":283,"props":964,"children":965},{"style":306},[966],{"type":44,"value":910},{"type":38,"tag":283,"props":968,"children":969},{"style":306},[970],{"type":44,"value":923},{"type":38,"tag":283,"props":972,"children":973},{"style":306},[974],{"type":44,"value":928},{"type":38,"tag":283,"props":976,"children":977},{"style":306},[978],{"type":44,"value":933},{"type":38,"tag":266,"props":980,"children":982},{"id":981},"cursor-1",[983],{"type":44,"value":175},{"type":38,"tag":47,"props":985,"children":986},{},[987,988,993],{"type":44,"value":395},{"type":38,"tag":65,"props":989,"children":991},{"className":990},[],[992],{"type":44,"value":401},{"type":44,"value":403},{"type":38,"tag":272,"props":995,"children":997},{"className":406,"code":996,"language":408,"meta":277,"style":277},"{\n  \"mcpServers\": {\n    \"deepgram-docs\": {\n      \"type\": \"http\",\n      \"url\": \"https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp\"\n    }\n  }\n}\n",[998],{"type":38,"tag":65,"props":999,"children":1000},{"__ignoreMap":277},[1001,1008,1031,1055,1092,1126,1133,1140],{"type":38,"tag":283,"props":1002,"children":1003},{"class":285,"line":286},[1004],{"type":38,"tag":283,"props":1005,"children":1006},{"style":418},[1007],{"type":44,"value":421},{"type":38,"tag":283,"props":1009,"children":1010},{"class":285,"line":296},[1011,1015,1019,1023,1027],{"type":38,"tag":283,"props":1012,"children":1013},{"style":418},[1014],{"type":44,"value":429},{"type":38,"tag":283,"props":1016,"children":1017},{"style":432},[1018],{"type":44,"value":435},{"type":38,"tag":283,"props":1020,"children":1021},{"style":418},[1022],{"type":44,"value":440},{"type":38,"tag":283,"props":1024,"children":1025},{"style":418},[1026],{"type":44,"value":403},{"type":38,"tag":283,"props":1028,"children":1029},{"style":418},[1030],{"type":44,"value":449},{"type":38,"tag":283,"props":1032,"children":1033},{"class":285,"line":26},[1034,1038,1043,1047,1051],{"type":38,"tag":283,"props":1035,"children":1036},{"style":418},[1037],{"type":44,"value":457},{"type":38,"tag":283,"props":1039,"children":1040},{"style":300},[1041],{"type":44,"value":1042},"deepgram-docs",{"type":38,"tag":283,"props":1044,"children":1045},{"style":418},[1046],{"type":44,"value":440},{"type":38,"tag":283,"props":1048,"children":1049},{"style":418},[1050],{"type":44,"value":403},{"type":38,"tag":283,"props":1052,"children":1053},{"style":418},[1054],{"type":44,"value":449},{"type":38,"tag":283,"props":1056,"children":1057},{"class":285,"line":351},[1058,1062,1067,1071,1075,1079,1084,1088],{"type":38,"tag":283,"props":1059,"children":1060},{"style":418},[1061],{"type":44,"value":481},{"type":38,"tag":283,"props":1063,"children":1064},{"style":484},[1065],{"type":44,"value":1066},"type",{"type":38,"tag":283,"props":1068,"children":1069},{"style":418},[1070],{"type":44,"value":440},{"type":38,"tag":283,"props":1072,"children":1073},{"style":418},[1074],{"type":44,"value":403},{"type":38,"tag":283,"props":1076,"children":1077},{"style":418},[1078],{"type":44,"value":500},{"type":38,"tag":283,"props":1080,"children":1081},{"style":306},[1082],{"type":44,"value":1083},"http",{"type":38,"tag":283,"props":1085,"children":1086},{"style":418},[1087],{"type":44,"value":440},{"type":38,"tag":283,"props":1089,"children":1090},{"style":418},[1091],{"type":44,"value":513},{"type":38,"tag":283,"props":1093,"children":1094},{"class":285,"line":360},[1095,1099,1104,1108,1112,1116,1121],{"type":38,"tag":283,"props":1096,"children":1097},{"style":418},[1098],{"type":44,"value":481},{"type":38,"tag":283,"props":1100,"children":1101},{"style":484},[1102],{"type":44,"value":1103},"url",{"type":38,"tag":283,"props":1105,"children":1106},{"style":418},[1107],{"type":44,"value":440},{"type":38,"tag":283,"props":1109,"children":1110},{"style":418},[1111],{"type":44,"value":403},{"type":38,"tag":283,"props":1113,"children":1114},{"style":418},[1115],{"type":44,"value":500},{"type":38,"tag":283,"props":1117,"children":1118},{"style":306},[1119],{"type":44,"value":1120},"https:\u002F\u002Fapi.dx.deepgram.com\u002Fkapa\u002Fmcp",{"type":38,"tag":283,"props":1122,"children":1123},{"style":418},[1124],{"type":44,"value":1125},"\"\n",{"type":38,"tag":283,"props":1127,"children":1128},{"class":285,"line":558},[1129],{"type":38,"tag":283,"props":1130,"children":1131},{"style":418},[1132],{"type":44,"value":564},{"type":38,"tag":283,"props":1134,"children":1135},{"class":285,"line":567},[1136],{"type":38,"tag":283,"props":1137,"children":1138},{"style":418},[1139],{"type":44,"value":573},{"type":38,"tag":283,"props":1141,"children":1142},{"class":285,"line":576},[1143],{"type":38,"tag":283,"props":1144,"children":1145},{"style":418},[1146],{"type":44,"value":582},{"type":38,"tag":266,"props":1148,"children":1150},{"id":1149},"windsurf-1",[1151],{"type":44,"value":192},{"type":38,"tag":47,"props":1153,"children":1154},{},[1155,1156,1161],{"type":44,"value":395},{"type":38,"tag":65,"props":1157,"children":1159},{"className":1158},[],[1160],{"type":44,"value":597},{"type":44,"value":403},{"type":38,"tag":272,"props":1163,"children":1164},{"className":406,"code":996,"language":408,"meta":277,"style":277},[1165],{"type":38,"tag":65,"props":1166,"children":1167},{"__ignoreMap":277},[1168,1175,1198,1221,1256,1287,1294,1301],{"type":38,"tag":283,"props":1169,"children":1170},{"class":285,"line":286},[1171],{"type":38,"tag":283,"props":1172,"children":1173},{"style":418},[1174],{"type":44,"value":421},{"type":38,"tag":283,"props":1176,"children":1177},{"class":285,"line":296},[1178,1182,1186,1190,1194],{"type":38,"tag":283,"props":1179,"children":1180},{"style":418},[1181],{"type":44,"value":429},{"type":38,"tag":283,"props":1183,"children":1184},{"style":432},[1185],{"type":44,"value":435},{"type":38,"tag":283,"props":1187,"children":1188},{"style":418},[1189],{"type":44,"value":440},{"type":38,"tag":283,"props":1191,"children":1192},{"style":418},[1193],{"type":44,"value":403},{"type":38,"tag":283,"props":1195,"children":1196},{"style":418},[1197],{"type":44,"value":449},{"type":38,"tag":283,"props":1199,"children":1200},{"class":285,"line":26},[1201,1205,1209,1213,1217],{"type":38,"tag":283,"props":1202,"children":1203},{"style":418},[1204],{"type":44,"value":457},{"type":38,"tag":283,"props":1206,"children":1207},{"style":300},[1208],{"type":44,"value":1042},{"type":38,"tag":283,"props":1210,"children":1211},{"style":418},[1212],{"type":44,"value":440},{"type":38,"tag":283,"props":1214,"children":1215},{"style":418},[1216],{"type":44,"value":403},{"type":38,"tag":283,"props":1218,"children":1219},{"style":418},[1220],{"type":44,"value":449},{"type":38,"tag":283,"props":1222,"children":1223},{"class":285,"line":351},[1224,1228,1232,1236,1240,1244,1248,1252],{"type":38,"tag":283,"props":1225,"children":1226},{"style":418},[1227],{"type":44,"value":481},{"type":38,"tag":283,"props":1229,"children":1230},{"style":484},[1231],{"type":44,"value":1066},{"type":38,"tag":283,"props":1233,"children":1234},{"style":418},[1235],{"type":44,"value":440},{"type":38,"tag":283,"props":1237,"children":1238},{"style":418},[1239],{"type":44,"value":403},{"type":38,"tag":283,"props":1241,"children":1242},{"style":418},[1243],{"type":44,"value":500},{"type":38,"tag":283,"props":1245,"children":1246},{"style":306},[1247],{"type":44,"value":1083},{"type":38,"tag":283,"props":1249,"children":1250},{"style":418},[1251],{"type":44,"value":440},{"type":38,"tag":283,"props":1253,"children":1254},{"style":418},[1255],{"type":44,"value":513},{"type":38,"tag":283,"props":1257,"children":1258},{"class":285,"line":360},[1259,1263,1267,1271,1275,1279,1283],{"type":38,"tag":283,"props":1260,"children":1261},{"style":418},[1262],{"type":44,"value":481},{"type":38,"tag":283,"props":1264,"children":1265},{"style":484},[1266],{"type":44,"value":1103},{"type":38,"tag":283,"props":1268,"children":1269},{"style":418},[1270],{"type":44,"value":440},{"type":38,"tag":283,"props":1272,"children":1273},{"style":418},[1274],{"type":44,"value":403},{"type":38,"tag":283,"props":1276,"children":1277},{"style":418},[1278],{"type":44,"value":500},{"type":38,"tag":283,"props":1280,"children":1281},{"style":306},[1282],{"type":44,"value":1120},{"type":38,"tag":283,"props":1284,"children":1285},{"style":418},[1286],{"type":44,"value":1125},{"type":38,"tag":283,"props":1288,"children":1289},{"class":285,"line":558},[1290],{"type":38,"tag":283,"props":1291,"children":1292},{"style":418},[1293],{"type":44,"value":564},{"type":38,"tag":283,"props":1295,"children":1296},{"class":285,"line":567},[1297],{"type":38,"tag":283,"props":1298,"children":1299},{"style":418},[1300],{"type":44,"value":573},{"type":38,"tag":283,"props":1302,"children":1303},{"class":285,"line":576},[1304],{"type":38,"tag":283,"props":1305,"children":1306},{"style":418},[1307],{"type":44,"value":582},{"type":38,"tag":266,"props":1309,"children":1311},{"id":1310},"other-tools-1",[1312],{"type":44,"value":758},{"type":38,"tag":47,"props":1314,"children":1315},{},[1316],{"type":44,"value":1317},"Provide the MCP server details and let them configure manually:",{"type":38,"tag":90,"props":1319,"children":1320},{},[1321,1331],{"type":38,"tag":94,"props":1322,"children":1323},{},[1324,1329],{"type":38,"tag":98,"props":1325,"children":1326},{},[1327],{"type":44,"value":1328},"Type:",{"type":44,"value":1330}," HTTP",{"type":38,"tag":94,"props":1332,"children":1333},{},[1334,1339,1340],{"type":38,"tag":98,"props":1335,"children":1336},{},[1337],{"type":44,"value":1338},"URL:",{"type":44,"value":786},{"type":38,"tag":65,"props":1341,"children":1343},{"className":1342},[],[1344],{"type":44,"value":1120},{"type":38,"tag":247,"props":1346,"children":1347},{},[],{"type":38,"tag":53,"props":1349,"children":1351},{"id":1350},"step-5-confirm",[1352],{"type":44,"value":1353},"Step 5: Confirm",{"type":38,"tag":47,"props":1355,"children":1356},{},[1357],{"type":44,"value":1358},"After installation:",{"type":38,"tag":90,"props":1360,"children":1361},{},[1362,1379],{"type":38,"tag":94,"props":1363,"children":1364},{},[1365,1369,1371,1377],{"type":38,"tag":98,"props":1366,"children":1367},{},[1368],{"type":44,"value":157},{"type":44,"value":1370}," — run ",{"type":38,"tag":65,"props":1372,"children":1374},{"className":1373},[],[1375],{"type":44,"value":1376},"\u002Freload-plugins",{"type":44,"value":1378}," to activate immediately, no restart needed.",{"type":38,"tag":94,"props":1380,"children":1381},{},[1382,1387],{"type":38,"tag":98,"props":1383,"children":1384},{},[1385],{"type":44,"value":1386},"Cursor \u002F Windsurf \u002F Other",{"type":44,"value":1388}," — the user may need to restart or reload their tool.",{"type":38,"tag":47,"props":1390,"children":1391},{},[1392],{"type":44,"value":1393},"Then tell the user:",{"type":38,"tag":822,"props":1395,"children":1396},{},[1397],{"type":38,"tag":47,"props":1398,"children":1399},{},[1400],{"type":44,"value":1401},"The Deepgram MCP server is now configured.",{"type":38,"tag":47,"props":1403,"children":1404},{},[1405,1407,1412],{"type":44,"value":1406},"If using the CLI MCP (",{"type":38,"tag":65,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":44,"value":117},{"type":44,"value":1413},"), add:",{"type":38,"tag":822,"props":1415,"children":1416},{},[1417],{"type":38,"tag":47,"props":1418,"children":1419},{},[1420],{"type":44,"value":1421},"Available tools include transcription, text-to-speech, project management, and usage\nqueries. Try asking to transcribe an audio file or convert text to speech.",{"type":38,"tag":47,"props":1423,"children":1424},{},[1425],{"type":44,"value":1426},"If using the hosted docs MCP, add:",{"type":38,"tag":822,"props":1428,"children":1429},{},[1430],{"type":38,"tag":47,"props":1431,"children":1432},{},[1433],{"type":44,"value":1434},"Your tool can now query Deepgram's full documentation directly — try asking about API\nparameters, voice agents, or model capabilities.",{"type":38,"tag":47,"props":1436,"children":1437},{},[1438,1440,1449],{"type":44,"value":1439},"Link them to ",{"type":38,"tag":1441,"props":1442,"children":1446},"a",{"href":1443,"rel":1444},"https:\u002F\u002Fdevelopers.deepgram.com\u002Fagentic-tools",[1445],"nofollow",[1447],{"type":44,"value":1448},"Deepgram Agentic Tools",{"type":44,"value":1450}," for more details.",{"type":38,"tag":53,"props":1452,"children":1454},{"id":1453},"troubleshooting",[1455],{"type":44,"value":1456},"Troubleshooting",{"type":38,"tag":47,"props":1458,"children":1459},{},[1460],{"type":44,"value":1461},"If the MCP server fails to connect:",{"type":38,"tag":831,"props":1463,"children":1464},{},[1465,1500,1512],{"type":38,"tag":94,"props":1466,"children":1467},{},[1468,1470,1475,1477,1482,1484,1490,1492,1498],{"type":44,"value":1469},"For the CLI MCP: verify ",{"type":38,"tag":65,"props":1471,"children":1473},{"className":1472},[],[1474],{"type":44,"value":70},{"type":44,"value":1476}," works and ",{"type":38,"tag":65,"props":1478,"children":1480},{"className":1479},[],[1481],{"type":44,"value":117},{"type":44,"value":1483}," runs without errors. Update\nwith ",{"type":38,"tag":65,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":44,"value":1489},"pipx upgrade deepctl",{"type":44,"value":1491}," or ",{"type":38,"tag":65,"props":1493,"children":1495},{"className":1494},[],[1496],{"type":44,"value":1497},"pip install --upgrade deepctl",{"type":44,"value":1499},".",{"type":38,"tag":94,"props":1501,"children":1502},{},[1503,1505,1510],{"type":44,"value":1504},"For the hosted MCP: verify the URL ",{"type":38,"tag":65,"props":1506,"children":1508},{"className":1507},[],[1509],{"type":44,"value":1120},{"type":44,"value":1511}," is accessible.",{"type":38,"tag":94,"props":1513,"children":1514},{},[1515,1517],{"type":44,"value":1516},"To install the CLI: ",{"type":38,"tag":65,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":44,"value":848},{"type":38,"tag":1523,"props":1524,"children":1525},"style",{},[1526],{"type":44,"value":1527},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1529,"total":1688},[1530,1546,1562,1576,1588,1600,1612,1623,1639,1653,1665,1677],{"slug":1531,"name":1531,"fn":1532,"description":1533,"org":1534,"tags":1535,"stars":1543,"repoUrl":1544,"updatedAt":1545},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1536,1539,1540],{"name":1537,"slug":1538,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":1541,"slug":1542,"type":15},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":1547,"name":1547,"fn":1548,"description":1549,"org":1550,"tags":1551,"stars":1559,"repoUrl":1560,"updatedAt":1561},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1552,1555,1556],{"name":1553,"slug":1554,"type":15},"Automation","automation",{"name":13,"slug":14,"type":15},{"name":1557,"slug":1558,"type":15},"Security","security",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:28:49.991939",{"slug":1563,"name":1563,"fn":1564,"description":1565,"org":1566,"tags":1567,"stars":1559,"repoUrl":1560,"updatedAt":1575},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1568,1569,1572],{"name":13,"slug":14,"type":15},{"name":1570,"slug":1571,"type":15},"Knowledge Management","knowledge-management",{"name":1573,"slug":1574,"type":15},"macOS","macos","2026-07-12T08:29:01.538106",{"slug":1577,"name":1577,"fn":1578,"description":1579,"org":1580,"tags":1581,"stars":1559,"repoUrl":1560,"updatedAt":1587},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1582,1583,1584],{"name":13,"slug":14,"type":15},{"name":1573,"slug":1574,"type":15},{"name":1585,"slug":1586,"type":15},"Task Management","task-management","2026-07-12T08:29:14.035414",{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":1559,"repoUrl":1560,"updatedAt":1599},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1594,1595,1596],{"name":13,"slug":14,"type":15},{"name":1570,"slug":1571,"type":15},{"name":1597,"slug":1598,"type":15},"Notes","notes","2026-07-12T08:28:51.246011",{"slug":1601,"name":1601,"fn":1602,"description":1603,"org":1604,"tags":1605,"stars":1559,"repoUrl":1560,"updatedAt":1611},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1606,1607,1608],{"name":1553,"slug":1554,"type":15},{"name":13,"slug":14,"type":15},{"name":1609,"slug":1610,"type":15},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":1613,"name":1613,"fn":1614,"description":1615,"org":1616,"tags":1617,"stars":1559,"repoUrl":1560,"updatedAt":1622},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1618,1621],{"name":1619,"slug":1620,"type":15},"Audio","audio",{"name":13,"slug":14,"type":15},"2026-07-12T08:28:21.009637",{"slug":1624,"name":1624,"fn":1625,"description":1626,"org":1627,"tags":1628,"stars":1559,"repoUrl":1560,"updatedAt":1638},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1629,1632,1635],{"name":1630,"slug":1631,"type":15},"Communications","communications",{"name":1633,"slug":1634,"type":15},"iMessage","imessage",{"name":1636,"slug":1637,"type":15},"Messaging","messaging","2026-07-12T08:28:57.517914",{"slug":1640,"name":1640,"fn":1641,"description":1642,"org":1643,"tags":1644,"stars":1559,"repoUrl":1560,"updatedAt":1652},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1645,1646,1649],{"name":1553,"slug":1554,"type":15},{"name":1647,"slug":1648,"type":15},"Camera","camera",{"name":1650,"slug":1651,"type":15},"Media","media","2026-07-12T08:28:28.096134",{"slug":1654,"name":1654,"fn":1655,"description":1656,"org":1657,"tags":1658,"stars":1559,"repoUrl":1560,"updatedAt":1664},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1659,1662,1663],{"name":1660,"slug":1661,"type":15},"Agents","agents",{"name":1553,"slug":1554,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T08:28:30.589001",{"slug":1666,"name":1666,"fn":1667,"description":1668,"org":1669,"tags":1670,"stars":1559,"repoUrl":1560,"updatedAt":1676},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1671,1672,1673],{"name":1660,"slug":1661,"type":15},{"name":1553,"slug":1554,"type":15},{"name":1674,"slug":1675,"type":15},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":1678,"name":1678,"fn":1679,"description":1680,"org":1681,"tags":1682,"stars":1559,"repoUrl":1560,"updatedAt":1687},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1683,1684],{"name":1553,"slug":1554,"type":15},{"name":1685,"slug":1686,"type":15},"Hardware","hardware","2026-07-12T08:28:39.322181",73,{"items":1690,"total":558},[1691,1711,1727,1739,1749,1755],{"slug":1692,"name":1692,"fn":1693,"description":1694,"org":1695,"tags":1696,"stars":22,"repoUrl":23,"updatedAt":1710},"api","build applications with Deepgram APIs","Deepgram API reference for speech-to-text, text-to-speech, voice agents, audio intelligence, and account management. Use whenever building with Deepgram APIs — REST or WebSocket. Covers authentication, all endpoints, query parameters, request\u002Fresponse schemas, and WebSocket message formats. Reference files are organized by domain: listen (STT), speak (TTS), agent (voice agents), read (text\u002Faudio intelligence), models, projects, auth, and self-hosted.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1697,1698,1701,1704,1707],{"name":1537,"slug":1538,"type":15},{"name":1699,"slug":1700,"type":15},"REST API","rest-api",{"name":1702,"slug":1703,"type":15},"Speech","speech",{"name":1705,"slug":1706,"type":15},"Text-to-Speech","text-to-speech",{"name":1708,"slug":1709,"type":15},"Transcription","transcription","2026-07-12T08:29:59.187438",{"slug":1712,"name":1712,"fn":1713,"description":1714,"org":1715,"tags":1716,"stars":22,"repoUrl":23,"updatedAt":1726},"docs","retrieve Deepgram product documentation","Find the right Deepgram documentation for any task. Use whenever someone needs help locating docs, understanding which API to use, or wants to ask questions about Deepgram. Covers all product areas: speech-to-text, text-to-speech, voice agents, audio intelligence, and self-hosted deployments.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1717,1720,1723],{"name":1718,"slug":1719,"type":15},"Documentation","documentation",{"name":1721,"slug":1722,"type":15},"Reference","reference",{"name":1724,"slug":1725,"type":15},"Research","research","2026-07-12T08:30:00.459256",{"slug":1728,"name":1728,"fn":1729,"description":1730,"org":1731,"tags":1732,"stars":22,"repoUrl":23,"updatedAt":1738},"examples","find Deepgram integration examples","Find working Deepgram integration examples with third-party platforms and frameworks. Use whenever someone wants to integrate Deepgram with Twilio, LiveKit, LangChain, Vercel AI SDK, Discord, Vonage, Pipecat, Expo, FastAPI, Cloudflare Workers, Slack, Telegram, LlamaIndex, Zoom, Next.js, Nuxt, Django, SvelteKit, NestJS, Spring Boot, CrewAI, Riverside, SignalWire, and more. Examples are full runnable integration demos, not minimal feature snippets.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1733,1734,1737],{"name":1718,"slug":1719,"type":15},{"name":1735,"slug":1736,"type":15},"Integrations","integrations",{"name":1721,"slug":1722,"type":15},"2026-07-12T08:30:04.40341",{"slug":1740,"name":1740,"fn":1741,"description":1742,"org":1743,"tags":1744,"stars":22,"repoUrl":23,"updatedAt":1748},"recipes","retrieve Deepgram code recipes","Find focused, runnable Deepgram recipes for a specific feature × language. Use whenever someone wants a minimal working code snippet for ONE feature (transcribe URL, diarize, smart-format, voice agent connect, etc.) rather than a full starter app. Recipes are under 50 lines, read DEEPGRAM_API_KEY from env, and ship with a runnable example_test. Covers Python, JavaScript, Go, .NET, Java, Rust, and the Deepgram CLI.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1745,1746,1747],{"name":1537,"slug":1538,"type":15},{"name":1718,"slug":1719,"type":15},{"name":1708,"slug":1709,"type":15},"2026-07-12T08:30:01.883365",{"slug":4,"name":4,"fn":5,"description":6,"org":1750,"tags":1751,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1752,1753,1754],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"slug":1756,"name":1756,"fn":1757,"description":1758,"org":1759,"tags":1760,"stars":22,"repoUrl":23,"updatedAt":1768},"starters","prototype Deepgram applications with starters","Clone a ready-to-run Deepgram demo app and start building on top of it. Use whenever someone wants a quick working demo, needs to prototype with Deepgram, or is starting a new project that uses speech-to-text, text-to-speech, voice agents, audio intelligence, or live streaming. Match the user's language, framework, and desired Deepgram feature to the right starter.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1761,1764,1767],{"name":1762,"slug":1763,"type":15},"Build","build",{"name":1765,"slug":1766,"type":15},"Prototyping","prototyping",{"name":1702,"slug":1703,"type":15},"2026-07-12T08:30:03.178788"]