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.
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"
}
}
}
}~/Library/Application Support/Claude/claude_desktop_config.jsonCursor & 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"
}
}npx -y @supergetty/mcp-server@latest --testExposed MCP Tools
These deterministic capabilities are callable directly by your assistant over the Model Context Protocol.
Extract clean transcripts, timed chapters, video metadata, and subtitles from YouTube URLs.
url (string), includeCaptions (boolean)High-precision speech transcription with timestamp alignment and speaker separation.
mediaUrl (string), language (string), separateSpeakers (boolean)Synthesize natural neural voice audio from text prompts with studio clarity.
text (string), voice (string), speed (number)Semantic search across all previously transcribed recordings, notes, and study material.
query (string), limit (number)Transform raw transcripts into study guides, flashcards, executive summaries, and quizzes.
transcriptId (string), format ("brief" | "flashcards" | "quiz")Live Protocol Test Bench
Simulate a client MCP request to extract and transcribe YouTube audio.