Transcribe directly inside your editor.

Connect Claude Desktop, Cursor, and your favorite tools straight to your Supergetty word library.

Developer Setup• 1-Minute Connection

Connect your favorite tools.

Extract YouTube transcripts, search your audio library, or generate spoken voice without leaving Cursor or Claude Desktop. Just paste one line into your config file.

Server StatusLive SSE & Stdio
Endpoint:https://supergetty.com/api/mcp
Auth Token:sg_mcp_live_e880...203

Claude Desktop Setup

Add this block to your claude_desktop_config.json file:

{
  "mcpServers": {
    "supergetty": {
      "command": "npx",
      "args": [
        "-y",
        "@supergetty/mcp-server@latest"
      ],
      "env": {
        "SUPERGETTY_AUTH_TOKEN": "sg_mcp_live_e880aad9b03e820cf228f80ba819b203",
        "SUPERGETTY_ENDPOINT": "https://supergetty.com/api/mcp"
      }
    }
  }
}
Config location: ~/Library/Application Support/Claude/claude_desktop_config.json

Cursor & IDE Integration

In Cursor Settings → Features → MCP, add a new MCP Server:

{
  "name": "supergetty",
  "type": "command",
  "command": "npx -y @supergetty/mcp-server@latest",
  "env": {
    "SUPERGETTY_AUTH_TOKEN": "sg_mcp_live_e880aad9b03e820cf228f80ba819b203"
  }
}
One-line terminal test: npx -y @supergetty/mcp-server@latest --test

Exposed MCP Tools

These deterministic capabilities are callable directly by your assistant over the Model Context Protocol.

supergetty_extract_youtube

Extract clean transcripts, timed chapters, video metadata, and subtitles from YouTube URLs.

Parametersurl (string), includeCaptions (boolean)
supergetty_transcribe_media

High-precision speech transcription with timestamp alignment and speaker separation.

ParametersmediaUrl (string), language (string), separateSpeakers (boolean)
supergetty_speech_generate

Synthesize natural neural voice audio from text prompts with studio clarity.

Parameterstext (string), voice (string), speed (number)
supergetty_search_library

Semantic search across all previously transcribed recordings, notes, and study material.

Parametersquery (string), limit (number)
supergetty_create_study_pack

Transform raw transcripts into study guides, flashcards, executive summaries, and quizzes.

ParameterstranscriptId (string), format ("brief" | "flashcards" | "quiz")

Live Protocol Test Bench

Simulate a client MCP request to extract and transcribe YouTube audio.

tool: extract_youtube