Agentic developer tools

Give your AI coding tools built-in knowledge of Deepgram APIs, docs, and starter apps.

Deepgram provides two ways to embed Deepgram knowledge directly into AI-powered developer tools: a docs MCP server for querying documentation and a skills marketplace with structured reference material your tools can load on demand.

Docs MCP server

The Deepgram docs MCP server lets AI coding tools query the full Deepgram documentation. It is powered by Kapa and available over HTTP.

TransportHTTP
URLhttps://deepgram.mcp.kapa.ai

Claude Code

Add the server with a single command:

$claude mcp add deepgram-docs --scope project --transport http https://deepgram.mcp.kapa.ai

Cursor, Windsurf, and other MCP clients

Add the following to your MCP configuration file (for example, .cursor/mcp.json or .windsurf/mcp.json):

1{
2 "mcpServers": {
3 "deepgram-docs": {
4 "type": "http",
5 "url": "https://deepgram.mcp.kapa.ai"
6 }
7 }
8}

Once connected, your AI tool can answer questions about any Deepgram API, SDK, or feature using the official documentation as its source.

Skills marketplace

The Deepgram skills repository contains agent-agnostic skill files that AI coding tools load to understand specific parts of the Deepgram platform. Each skill is a folder of plain Markdown that any tool can consume.

Available skills

SkillDescription
deepgram-apiFull API reference for all Deepgram REST and WebSocket APIs, generated from OpenAPI and AsyncAPI specs
deepgram-docsDocumentation navigator with topic-by-topic pointers and MCP server setup instructions
deepgram-startersReady-to-run demo apps across 13 frameworks and 7 features

Quick setup (Claude Code)

Register the repository as a plugin marketplace:

$/plugin marketplace add deepgram/skills

Browse and install individual skills:

$/plugin install deepgram-api@deepgram-agent-skills
$/plugin install deepgram-docs@deepgram-agent-skills
$/plugin install deepgram-starters@deepgram-agent-skills

SDKs

Deepgram provides official SDKs so you can integrate speech-to-text, text-to-speech, voice agents, and audio intelligence into your application in the language of your choice.

For a full breakdown of which SDK supports which API feature, see the SDK feature matrix.