Botverse
Botverse is a cloud-based media processing and document conversion server accessible via an MCP server (for AI agents like Claude Desktop, Cursor) or CLI (for scripting and CI/CD).
Video & Audio Transcoding
Convert from a public URL (Dropbox, Google Drive, OneDrive, etc., up to 2 GB) or uploaded file (up to 5 GB)
Output formats:
mp4(H.264),webm(VP9),mov_prores(ProRes 422),mp3(audio extraction),gifOptional controls: resolution, bitrate, framerate, H.264 profile, trimming (start time + duration)
Document Conversion
Convert inline content (string input, up to 10,000 chars), from a public URL, or from an uploaded file
Input formats:
md,html,rst,txt,docx— Output formats:docx,pdf,html,txt,md,rst,xlsx
Transcription
Speaker-labelled transcripts with diarization and AI speaker naming
Output to
txt,srt,vtt,docx, orpdf(~$5/hour)
File Handling
Get presigned PUT URLs to upload files (up to 5 GB) before processing
Get signed HTTPS download URLs (valid 24 hours) for completed output files
Job & Workflow Management
Poll job status every ~5 seconds (
queued,processing,complete,failed) with progress percentageSubmit multi-step pipelines via BWDL (Botverse Workflow Definition Language) with parallel branches
Track workflow step statuses and cancel in-progress workflows (billed only for completed steps)
Account Management
Check prepaid wallet balance, auto-refill settings, and thresholds
Allows document conversion from Box share links: pass a Box share URL to convert_from_url or transcode_from_url and the server will process the file server-side.
botverse-mcp
MCP server and command-line tool for Botverse — video transcoding and document conversion for AI agents and the humans who configure them.
What it does
Video transcoding — MP4 (H.264), WebM (VP9), ProRes 422, GIF, MP3 extraction · $0.25/job
Document conversion — Markdown ↔ DOCX ↔ PDF ↔ HTML ↔ XLSX · $0.05/file
Transcription — speaker-labelled transcripts (diarization + AI speaker naming) → txt/srt/vtt/docx/pdf · ~$5/hour
Two ways to use it: an MCP server for your AI agents, and a botverse CLI for the shell — evaluation, CI/CD, cron, scripts, and local coding agents. No AWS. No FFmpeg. No infrastructure.
Related MCP server: arcframe-mcp
Setup
Sign up at botverse.cloud — free to try: $1 credit on signup, no card required. A card + 2FA are only needed at your first top-up ($5 min). No monthly fees.
Get an API key or connector URL from your dashboard
Add to your MCP client config
Usage
Claude Desktop / Cursor / Windsurf
{
"mcpServers": {
"botverse": {
"command": "npx",
"args": ["-y", "botverse-mcp"],
"env": {
"BOTVERSE_API_KEY": "bv_live_..."
}
}
}
}Or with a connector URL (recommended for claude.ai):
{
"mcpServers": {
"botverse": {
"command": "npx",
"args": ["-y", "botverse-mcp"],
"env": {
"BOTVERSE_CONNECTOR_URL": "https://botverse.cloud/mcp?token=bv_sess_..."
}
}
}
}Command line (botverse)
The same package ships a botverse CLI for the shell — it reads files from disk and
streams them straight to the API (no content goes through an LLM), so it's the fast
path for evaluation, automation, and local coding agents.
export BOTVERSE_API_KEY=bv_live_… # or BOTVERSE_CONNECTOR_URL=…?token=bv_sess_…
npx botverse convert report.md --to pdf
npx botverse convert *.md --to docx,pdf -o ./out
npx botverse transcode clip.mov --to mp4 -o ./out
npx botverse transcribe call.mp4 --to docx --attendees "Sarah Chen,Mike Torres"
npx botverse balanceEach job uploads → polls → downloads the finished file to -o (default: current dir).
Globs and multiple --to formats run as a batch.
Sandbox note: the CLI needs outbound network to
botverse.cloudand S3, so it does not run inside sandboxed agent environments (claude.ai / Claude Desktop), whose egress is allowlisted. There, use the MCP tools (convert_content/get_output_content).
Tools (MCP)
Tool | Description |
| Transcode video from a public URL |
| Transcode an uploaded video file |
| Convert document content inline (up to 4 MB; sandbox-safe) |
| Convert a document from a public URL |
| Convert an uploaded document |
| Poll a job until complete |
| Get the signed download URL |
| Get finished output bytes inline (sandbox-safe download) |
| Check wallet balance |
Pricing
Video transcode (≤5 min): $0.25/job
Video overage: +$0.08/min
ProRes 422: $0.50/job
Document conversion: $0.05/file
Credits never expire. Full pricing →
Links
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MkTurner74/botverse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server