Smithery Logo
MCPsSkillsDocsPricing
Login
NewFlame, an assistant that learns and improves. Available onTelegramSlack
    jeremylongshore

    retellai-install-auth

    jeremylongshore/retellai-install-auth
    DevOps
    1,221

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─
    Smithery Logo

    Give agents more agency

    Resources

    DocumentationPrivacy PolicySystem Status

    Company

    PricingAboutBlog

    Connect

    © 2026 Smithery. All rights reserved.

    About

    Install and configure Retell AI SDK/CLI authentication. Use when setting up a new Retell AI integration, configuring API keys, or initializing Retell AI in your project. Trigger with phrases like...

    SKILL.md

    Retell AI Install Auth

    Overview

    Install the Retell AI SDK and configure API key authentication for building voice agents.

    Prerequisites

    • Retell AI account at retellai.com
    • API key from the Retell AI dashboard
    • Node.js 18+ or Python 3.9+

    Instructions

    Step 1: Install SDK

    set -euo pipefail
    # Node.js
    npm install retell-sdk
    
    # Python
    pip install retell-sdk
    

    Step 2: Configure Environment

    # .env
    RETELL_API_KEY=key_xxxxxxxxxxxxxxxxxxxxxxxx
    

    Step 3: Initialize Client (Node.js)

    import Retell from 'retell-sdk';
    
    const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! });
    
    // Verify connection — list agents
    const agents = await retell.agent.list();
    console.log(`Connected! ${agents.length} agent(s) configured.`);
    

    Step 4: Initialize Client (Python)

    from retell import Retell
    import os
    
    retell = Retell(api_key=os.environ["RETELL_API_KEY"])
    agents = retell.agent.list()
    print(f"Connected! {len(agents)} agent(s) configured.")
    

    Output

    • retell-sdk installed
    • API key configured
    • Connection verified with agent listing

    Error Handling

    Error Cause Solution
    401 Unauthorized Invalid API key Verify key in Retell Dashboard
    ModuleNotFoundError SDK not installed npm install retell-sdk
    Connection timeout Network issue Check firewall allows HTTPS

    Resources

    • Retell AI SDKs
    • retell-sdk npm

    Next Steps

    Create your first agent: retellai-hello-world

    Recommended Servers
    Hostsmith
    Hostsmith
    Browser tool
    Browser tool
    URL Safety Validator MCP
    URL Safety Validator MCP
    Repository
    jeremylongshore/claude-code-plugins-plus-skills
    Files