textify-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@textify-mcpGet transcript from https://youtu.be/abc123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@textifyme/mcp
Local (stdio) shim for the hosted Textify MCP server — turn anything into text from any MCP
client. It bridges a local command-style MCP config to the hosted streamable-HTTP endpoint at
https://mcp.textify.me/mcp, with your API key pre-wired.
Prefer a remote connector? If your client supports remote MCP servers directly (Claude.ai "Add custom connector"), just add
https://mcp.textify.me/mcp— you don't need this package. This shim exists for clients that only accept a local command.
Tools
Tool | What it does |
| Fetch a YouTube video's published captions by URL or ID. |
| Transcribe an audio/video file (URL or upload) to timestamped text. |
| Extract text from a photo, screenshot, or scan (incl. handwriting). |
| Convert a DOCX / PPTX / XLSX / EPUB to clean Markdown (PDF not supported). |
| Fetch a public URL and return clean Markdown. |
Every account gets 100 free credits/month. All calls debit the same credit ledger as the Textify REST API and website — one balance, one accounting.
Related MCP server: gobbler-mcp
Setup
Get an API key at https://textify.me/docs.
Claude Desktop / Claude Code / Cursor
{
"mcpServers": {
"textify": {
"command": "npx",
"args": ["-y", "@textifyme/mcp"],
"env": { "TEXTIFY_API_KEY": "sk_your_key" }
}
}
}TEXTIFY_API_KEY is required — tool calls that cost credits authenticate with it as
Authorization: Bearer <key>. Get a free key (100 credits/month) at https://textify.me/account.
Configuration
Env var | Default | Purpose |
| — | API key; sent as |
|
| Endpoint override. Set to |
Extra CLI args are forwarded to the underlying mcp-remote
bridge (e.g. --debug).
How it works
The shim is a thin wrapper: it resolves the bundled mcp-remote proxy and launches it against the
Textify endpoint with your auth header attached, then pipes MCP over stdio. No Textify credentials
are stored on disk by this package; the key lives only in your client's env.
Local development
# in this package dir
npm install
TEXTIFY_MCP_URL=http://localhost:8788/mcp TEXTIFY_API_KEY=sk_test node bin/textify-mcp.mjs
# (run `pnpm --filter @app/mcp run dev` in the Textify monorepo to serve localhost:8788)License
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Convert files, URLs, and documents to clean, AI-ready Markdown via MCP.
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Convert PDF, DOCX, HTML, and URLs to clean, LLM-ready markdown with tables preserved
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server (stdio + HTTP/SSE) that fetches video transcripts/subtitles via yt-dlp, with pagination for large responses. Supports YouTube, Twitter/X, Instagram, TikTok, Twitch, Vimeo, Facebook, Bilibili, VK, Dailymotion. Whisper fallback — transcribes audio when subtitles are unavailable (local or OpenAI API). Works with Cursor and other MCP host822MIT
- AlicenseNot gradedqualityAmaintenanceConverts YouTube videos, audio, documents, and web pages to clean markdown with YAML frontmatter, providing AI assistants with structured content via the MCP protocol.4MIT
- AlicenseNot gradedqualityCmaintenanceConverts documents, images, audio, and video into Markdown or structured JSON. Compatible with MCP-compatible AI agents as a stdio server providing a convert_file tool.1MIT
- AlicenseNot gradedqualityCmaintenanceTranscribes YouTube videos or audio files to Markdown, plain-text, and Word documents.MIT