WeSearch

Stt.ai MCP Server

·3 min read · 0 reactions · 0 comments · 1 view
#mcp#speech-to-text#transcription#claude#whisper
Stt.ai MCP Server
⚡ TL;DR · AI summary

STT.ai has released an MCP server plugin, sttai-mcp 0.1.0, enabling AI clients like Claude Desktop and Cursor to transcribe audio from URLs, manage transcripts, and perform AI-driven analysis and chat over spoken content. Unlike read-only alternatives, it supports active transcription and real-time querying within a single workflow. The tool integrates via standard MCP configuration and requires a Python environment and STT.ai API key. It is currently in alpha and available via PyPI under the MIT license.

Key facts
Original article
PyPI
Read full at PyPI →
Full article excerpt tap to expand

sttai-mcp 0.1.0 pip install sttai-mcp==0.1.0 Copy PIP instructions Latest version Released: Apr 26, 2026 Model Context Protocol server for STT.ai — transcribe URLs, list/search transcripts, summarize, analyze, generate, and chat with transcripts from Claude Desktop / Cursor / any MCP client. Navigation Project description Release history Download files Verified details These details have been verified by PyPI Maintainers sttai Unverified details These details have not been verified by PyPI Project links Documentation Homepage Issues Repository Meta License Expression: MIT SPDX License Expression Author: STT.ai Tags mcp , model-context-protocol , stt , speech-to-text , transcription , whisper , claude , anthropic Requires: Python >=3.10 Classifiers Development Status 3 - Alpha Intended Audience Developers Programming Language Python :: 3 Python :: 3.10 Python :: 3.11 Python :: 3.12 Python :: 3.13 Topic Multimedia :: Sound/Audio :: Speech Software Development :: Libraries :: Python Modules Report project as malware Project description Project details Release history Download files Project description STT.ai MCP Server Model Context Protocol server for STT.ai. Lets Claude Desktop, Cursor, and any other MCP-compatible client transcribe audio/video, manage transcripts, and run AI features over them. Differentiator vs other STT MCP servers (Otter, Fireflies, Granola, Read AI): those are read-only over stored transcripts. This one also exposes transcribe_url and chat_with_transcript, so Claude can transcribe a YouTube link and immediately query the result in one conversation. Tools Tool What it does list_transcripts List your past transcripts (paginated, filter by status) get_transcript Fetch one transcript with segments, speakers, summary, metadata export_transcript Export as text/srt/vtt/json/csv transcribe_url Download + transcribe any URL (YouTube, podcast, direct file) summarize_transcript AI summary (cached or regenerated) analyze_transcript Sentiment, topics, entities, action items, questions, PII generate_from_transcript Blog posts, social media, study guides, flashcards, etc. chat_with_transcript RAG Q&A with source citations (segment IDs + timestamps) list_models Available transcription models with WER benchmarks list_languages Supported languages Install pip install sttai-mcp Configure Get your STT.ai API key at https://stt.ai/account/#developer. Claude Desktop Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows): { "mcpServers": { "stt-ai": { "command": "sttai-mcp", "env": { "STT_API_KEY": "your-api-key-here" } } } } Restart Claude Desktop. The STT.ai tools should appear. Cursor Settings → MCP → Add new MCP server: { "stt-ai": { "command": "sttai-mcp", "env": { "STT_API_KEY": "your-api-key-here" } } } Run directly STT_API_KEY=your-key sttai-mcp The server speaks MCP over stdio. Examples In Claude Desktop, after configuring: "Transcribe https://www.youtube.com/watch?v=dQw4w9WgXcQ and summarize the key points." Claude will call transcribe_url, then summarize_transcript on the result. "What are my last 5 transcripts about?" Claude calls list_transcripts(limit=5) and reads each title. "In transcript abc123, what did the speaker say about pricing?" Claude calls chat_with_transcript("abc123", "what did they say about pricing?") and gets an answer with timestamped sources. Repo Source: https://github.com/sttaigit/sttai-mcp License: MIT Issues:…

This excerpt is published under fair use for community discussion. Read the full article at PyPI.

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Email

Discussion

0 comments

More from PyPI