Skip to content
Scalekit Docs

Connect AI agents to the Deepgram MCP server

Vendor MCP1 toolOAuth 2.1/DCRTranscriptionAI

The Deepgram MCP connector routes your AI agent's tool calls to Deepgram's own MCP server through Scalekit. Each user signs in to Deepgram once, and Scalekit stores and refreshes their tokens, so your agent never handles credentials. It comes with 1 tool.

  1. Terminal window
    npm install @scalekit-sdk/node dotenv

    Full SDK reference: Node.js | Python

  2. Add your Scalekit credentials to your .env file. Find values in app.scalekit.com > Developers > API Credentials.

    .env
    SCALEKIT_ENVIRONMENT_URL=<your-environment-url>
    SCALEKIT_CLIENT_ID=<your-client-id>
    SCALEKIT_CLIENT_SECRET=<your-client-secret>
  3. quickstart.mts
    import { ScalekitClient } from '@scalekit-sdk/node'
    import 'dotenv/config'
    import { createInterface } from 'node:readline/promises'
    const scalekit = new ScalekitClient(
    process.env.SCALEKIT_ENVIRONMENT_URL,
    process.env.SCALEKIT_CLIENT_ID,
    process.env.SCALEKIT_CLIENT_SECRET,
    )
    const actions = scalekit.actions
    const connector = 'deepgrammcp'
    const identifier = 'user_123'
    // Generate an authorization link for the user
    const { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })
    console.log('Authorize Deepgram MCP:', link)
    const rl = createInterface({ input: process.stdin, output: process.stdout })
    await rl.question('Press Enter after authorizing...')
    rl.close()
    // Make your first call
    const result = await actions.executeTool({
    connector,
    identifier,
    toolName: 'deepgrammcp_search_deepgram_knowledge_sources',
    toolInput: { query: 'YOUR_QUERY' },
    })
    console.log(result)
    Terminal window
    npx tsx quickstart.mts

Connect this agent connector to let your agent:

  • Search deepgram knowledge sources — Search Deepgram documentation and knowledge sources for the most relevant results for a given query

Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.

deepgrammcp_search_deepgram_knowledge_sources#Search Deepgram documentation and knowledge sources for the most relevant results for a given query.1 param

Search Deepgram documentation and knowledge sources for the most relevant results for a given query.

NameTypeRequiredDescription
querystringrequiredA single, well-formed natural-language query to search Deepgram knowledge sources. Must be a complete sentence.