MCP server for WebVoice — agent registration, chat, TTS, STT, translation, images
Project description
WebVoice MCP Server
Local Model Context Protocol server that exposes WebVoice REST API tools to Cursor, Claude Desktop, and other MCP clients.
Install from PyPI:
pip install webvoice-mcp
From source (development)
pip install -r requirements-mcp.txt
# or editable install from repo root:
pip install -e .
Configure Cursor
Option A — Agent registration via MCP (no browser)
- Add MCP without
WEBVOICE_API_KEYfirst (or use the register tools from any client). - Call
webvoice_register_send_codewith your email. - Read the OTP from email, then
webvoice_register_verifywith the code. - Response includes
api_key(once),onboarding.credits,onboarding.can_use_api, and optionalonboarding.solana(wallet +memo_codefor USDC/SOL top-up). - If
can_use_apiis true, use chat/TTS/STT immediately with welcome credits. - Set
WEBVOICE_API_KEYin MCP config and restart Cursor (optional Solana/PayPal top-up later).
REST equivalent: POST /api/v1/auth/send-code/ → POST /api/v1/auth/verify-code/ with create_api_key: true. See API docs.
Option B — Browser signup (human)
- Login — email OTP or Google (
/accounts/login/). New users get welcome + daily free credits. - API key — API dashboard → Create key → copy
wv_…(shown once). - Credits (optional) — Buy credits, Premium (PayPal), or Solana (send USDC/SOL with your personal memo from
webvoice_onboarding).
When balance is zero, MCP calls fail with insufficient credits; you receive an email with a recharge link.
MCP config
Edit Cursor MCP config (~/.cursor/mcp.json or Settings → MCP):
{
"mcpServers": {
"webvoice": {
"command": "webvoice-mcp",
"env": {
"WEBVOICE_API_KEY": "wv_your_key_here"
}
}
}
}
If webvoice-mcp is not on PATH, use Python module form:
{
"mcpServers": {
"webvoice": {
"command": "python",
"args": ["-m", "webvoice_mcp"],
"cwd": "/path/to/webvoice",
"env": {
"WEBVOICE_API_KEY": "wv_your_key_here"
}
}
}
}
Optional: WEBVOICE_BASE_URL (default https://webvoice.easytaskflow.app/api/v1).
Tools
| Tool | Description |
|---|---|
webvoice_register_send_code |
Start registration — OTP to email |
webvoice_register_verify |
Complete registration → API key + onboarding (credits, can_use_api) |
webvoice_onboarding |
Credits, can_use_api, optional Solana wallet/memo, recharge URLs |
webvoice_status |
Credits balance |
webvoice_list_chat_models |
Available chat models |
webvoice_list_voices |
TTS voices |
webvoice_chat |
Chat completions (DeepSeek default) |
webvoice_tts |
Text-to-speech → MP3 |
webvoice_stt |
Transcribe local audio file |
webvoice_translate |
Text translation |
webvoice_image |
MiniMax image generation |
Example agent flow
New agent (register → use → optional top-up):
webvoice_register_send_code→webvoice_register_verify→ saveapi_key.- If
onboarding.can_use_api: callwebvoice_chat/webvoice_tts/ … immediately. - Optional:
webvoice_onboarding→ Solana memo or PayPal URLs when you need more credits.
Existing account:
- Ask the model to call
webvoice_chatwith your question. - Call
webvoice_ttswithoutput_pathto save spoken reply. - Call
webvoice_sttwith a recordedaudio_pathfor voice input.
Credits are billed on your WebVoice account per API call.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file webvoice_mcp-0.2.1.tar.gz.
File metadata
- Download URL: webvoice_mcp-0.2.1.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6667f25af71f908449eed42fd9946beea3c91ebb98d24d58fdffa85a6d5cfc23
|
|
| MD5 |
07b182677b3eaca2a7e8884c255c7ec3
|
|
| BLAKE2b-256 |
f33542d7e0ff8bb12c591c7e7ea374b1eb9d7865c8629fda463188316bca70a7
|
File details
Details for the file webvoice_mcp-0.2.1-py3-none-any.whl.
File metadata
- Download URL: webvoice_mcp-0.2.1-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccfba169d3d54a56a89bb5e3f1a691bcc40c3889ea53b1eecf5faf28a5e7db55
|
|
| MD5 |
f0a99893e31c6e5399fc98ca7b6deb8a
|
|
| BLAKE2b-256 |
c241106405a70c98906cf7b6e65832b42543423c783aec2054a72ebef875487d
|