Skip to main content
ClaudeWave
SparkleOfficial avatar
SparkleOfficial

scriptivox-mcp-server

Ver en GitHub
MCP ServersRegistry oficial13 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
77/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No description
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: NPX · @scriptivox/mcp-server
Claude Code CLI
claude mcp add scriptivox -- npx -y @scriptivox/mcp-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "scriptivox": {
      "command": "npx",
      "args": ["-y", "@scriptivox/mcp-server"],
      "env": {
        "SCRIPTIVOX_API_KEY": "<scriptivox_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
SCRIPTIVOX_API_KEY
Casos de uso

Resumen de MCP Servers

# @scriptivox/mcp-server

[![smithery badge](https://smithery.ai/badge/sparkleofficialmain/scriptivox)](https://smithery.ai/servers/sparkleofficialmain/scriptivox)

MCP (Model Context Protocol) server for [Scriptivox](https://scriptivox.com) — AI-powered audio and video transcription.

Turn any AI assistant into a transcription powerhouse. Transcribe audio and video from URLs or local files with 99% accuracy, speaker diarization, **119 languages**, and word-level timestamps. Plus full CRUD on transcriptions (cancel, delete, list) and caption export in SRT / WebVTT / plain text.

## Quick Start

### Claude Desktop

Add to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "scriptivox": {
      "command": "npx",
      "args": ["-y", "@scriptivox/mcp-server"],
      "env": {
        "SCRIPTIVOX_API_KEY": "sk_live_YOUR_KEY"
      }
    }
  }
}
```

### Claude Code

```bash
claude mcp add scriptivox -- npx -y @scriptivox/mcp-server
```

Then set the environment variable `SCRIPTIVOX_API_KEY=sk_live_YOUR_KEY`.

### Other MCP Clients

Any MCP-compatible client can use this server via stdio transport:

```bash
SCRIPTIVOX_API_KEY=sk_live_YOUR_KEY npx -y @scriptivox/mcp-server
```

## Getting an API Key

1. Sign up at [platform.scriptivox.com](https://platform.scriptivox.com)
2. Go to **[Keys](https://platform.scriptivox.com/keys)** in the dashboard
3. Create an API key (starts with `sk_live_...`)
4. Add credits at **[Billing](https://platform.scriptivox.com/billing)** ($5 minimum — API pricing is $0.20/hour of audio)

## Tools

### Discovery tools (no API key required)

| Tool | Description |
|------|-------------|
| `get_supported_languages` | List all 119 supported transcription languages with ISO codes |
| `get_pricing` | View plans, API pricing, and per-file limits |
| `get_product_info` | Learn about Scriptivox features (`transcription`, `audio-tools`, `video-tools`, `subtitle-tools`, `meeting-bot`, `api`, `all`) |
| `get_api_docs` | API documentation sections (`quickstart`, `transcribe`, `result`, `list`, `cancel`, `delete`, `upload`, `balance`, `webhooks`, `errors`, `all`) |

### Transcription tools (API key required)

| Tool | Description |
|------|-------------|
| `transcribe_url` | Transcribe audio/video from a public URL (Google Drive, Dropbox, OneDrive, or direct file URLs). Supports `language`, `diarize`, `speaker_count`, `align`, `webhook_url`, `idempotency_key`, `await_completed`. |
| `transcribe_upload` | Transcribe a LOCAL file. Drives the 3-step upload flow internally. Up to 5 GB. |
| `transcribe_status` | Check the status of a transcription by ID. Returns the full transcript when completed. |
| `transcribe_cancel` | Cancel an in-flight transcription. Refunds reserved balance. Idempotent. |
| `transcribe_delete` | Soft-delete a transcription record. Idempotent. Refuses to delete in-flight jobs. |
| `list_transcriptions` | List recent transcriptions with `status`, `from`, `to`, `limit`, `cursor`, `order` filters. |
| `export_transcript` | Export a completed transcript as SRT subtitles, WebVTT subtitles, or plain text. Segmentation knobs: `max_words`, `max_chars`, `max_duration`, `sentence_aware`, `include_speakers`, `strip_chars`. |
| `check_balance` | View your API credit balance and estimated hours available. |

### Tip: always pass `language` when you know it

Auto-detection works in most cases but has a small failure rate on short clips, code-switched audio, or files starting with music. Passing the ISO code is both faster and more accurate.

## Usage examples

Once connected, ask your AI assistant:

- *"Transcribe this podcast: https://example.com/episode.mp3 — it's in English"*
- *"Transcribe ~/Downloads/meeting.m4a with speaker identification"*
- *"Show me my last 5 transcriptions"*
- *"Cancel transcription abc123-…"*
- *"Export transcription abc123-… as SRT subtitles, 2 words per caption"*
- *"What languages does Scriptivox support?"*
- *"Check my Scriptivox balance"*

## Resources

The server exposes these MCP resources for AI assistants to read:

- `scriptivox://pricing` — Plans and rates
- `scriptivox://languages` — Supported languages
- `scriptivox://api-docs` — API reference

## Prompts

- `transcribe-audio` — Pre-built prompt for URL transcription
- `meeting-notes` — Transcribe a meeting and generate structured notes

## Configuration

| Environment Variable | Description | Required |
|---------------------|-------------|----------|
| `SCRIPTIVOX_API_KEY` | Your API key (`sk_live_...`) | For transcription tools |
| `SCRIPTIVOX_API_URL` | Custom API base URL | No (defaults to production) |

## Pricing

- **Free plan**: 3 transcriptions/day, 30 min max
- **Pro plan**: $20/month — unlimited transcriptions
- **API**: $0.20/hour of audio (pay-as-you-go)

## Links

- [Scriptivox](https://scriptivox.com) — Main website
- [API Documentation](https://scriptivox.com/docs/api-reference) — Full API reference
- [Dashboard](https://platform.scriptivox.com) — Manage your account
- [Smithery](https://smithery.ai) — MCP server registry

## License

MIT

Lo que la gente pregunta sobre scriptivox-mcp-server

¿Qué es SparkleOfficial/scriptivox-mcp-server?

+

SparkleOfficial/scriptivox-mcp-server es mcp servers para el ecosistema de Claude AI con 13 estrellas en GitHub.

¿Cómo se instala scriptivox-mcp-server?

+

Puedes instalar scriptivox-mcp-server clonando el repositorio (https://github.com/SparkleOfficial/scriptivox-mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar SparkleOfficial/scriptivox-mcp-server?

+

Nuestro agente de seguridad ha analizado SparkleOfficial/scriptivox-mcp-server y le ha asignado un Trust Score de 77/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene SparkleOfficial/scriptivox-mcp-server?

+

SparkleOfficial/scriptivox-mcp-server es mantenido por SparkleOfficial. La última actividad registrada en GitHub es del 2026-08-25, con 0 issues abiertos.

¿Hay alternativas a scriptivox-mcp-server?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega scriptivox-mcp-server en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: SparkleOfficial/scriptivox-mcp-server
[![Featured on ClaudeWave](https://claudewave.com/api/badge/sparkleofficial-scriptivox-mcp-server)](https://claudewave.com/repo/sparkleofficial-scriptivox-mcp-server)
<a href="https://claudewave.com/repo/sparkleofficial-scriptivox-mcp-server"><img src="https://claudewave.com/api/badge/sparkleofficial-scriptivox-mcp-server" alt="Featured on ClaudeWave: SparkleOfficial/scriptivox-mcp-server" width="320" height="64" /></a>

Más MCP Servers

Alternativas a scriptivox-mcp-server