-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Fixes #5216: Add VoiceVox MCP Server to Marketplace #5267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| # Marketplace Data | ||
|
|
||
| This directory contains marketplace data files for Roo Code's marketplace system. | ||
|
|
||
| ## Structure | ||
|
|
||
| - `mcps.yaml` - MCP (Model Context Protocol) servers available in the marketplace | ||
| - `modes.yaml` - Custom modes available in the marketplace (to be added) | ||
|
|
||
| ## MCP Servers | ||
|
|
||
| The `mcps.yaml` file contains a list of MCP servers that can be installed through the Roo Code marketplace. Each MCP server entry includes: | ||
|
|
||
| - `id` - Unique identifier for the MCP server | ||
| - `name` - Display name | ||
| - `description` - Detailed description of functionality | ||
| - `author` - Author name | ||
| - `authorUrl` - Author's website or GitHub profile | ||
| - `url` - Repository or documentation URL | ||
| - `tags` - Array of tags for categorization | ||
| - `prerequisites` - Array of requirements needed before installation | ||
| - `content` - Installation methods (can be a single string or array of methods) | ||
|
|
||
| ### Installation Methods | ||
|
|
||
| Each installation method can include: | ||
|
|
||
| - `name` - Method name (e.g., "uvx", "pip install") | ||
| - `content` - JSON configuration to be added to MCP settings | ||
| - `parameters` - Optional parameters that users can customize | ||
| - `prerequisites` - Method-specific prerequisites | ||
|
|
||
| ### Parameters | ||
|
|
||
| Parameters allow users to customize the installation: | ||
|
|
||
| - `name` - Display name for the parameter | ||
| - `key` - Key used in the configuration template | ||
| - `placeholder` - Default value or example | ||
| - `optional` - Whether the parameter is optional (default: false) | ||
|
|
||
| ## VoiceVox MCP Server | ||
|
|
||
| The VoiceVox MCP Server provides Japanese text-to-speech capabilities using the VoiceVox engine. It includes: | ||
|
|
||
| ### Features | ||
|
|
||
| - Text-to-Speech conversion for Japanese text | ||
| - Multiple voice characters with different personalities | ||
| - Customizable speech speed and voice selection | ||
| - Automatic audio playback after generation | ||
| - WAV format audio file management | ||
|
|
||
| ### Available Tools | ||
|
|
||
| 1. `get_voices` - Retrieve list of available voices from VoiceVox | ||
| 2. `text_to_speech` - Convert text to speech with customizable settings | ||
|
|
||
| ### Use Cases | ||
|
|
||
| - Educational content creation with Japanese narration | ||
| - Accessibility improvements for Japanese content | ||
| - Podcast and video production | ||
| - Language learning applications | ||
| - Chatbot voice functionality | ||
|
|
||
| ### Installation Options | ||
|
|
||
| 1. **uvx (Recommended)** - Uses uvx to run the server directly | ||
| 2. **pip install** - Install via pip and run with Python | ||
| 3. **Custom Configuration** - Full customization with all available parameters | ||
|
|
||
| ### Prerequisites | ||
|
|
||
| - VoiceVox Engine running (default: http://localhost:50021) | ||
| - Python 3.10+ | ||
| - For uvx method: `pip install uvx` | ||
| - For pip method: `pip install mcp-server-voicevox` | ||
|
|
||
| ## Usage | ||
|
|
||
| This marketplace data is used by the Roo Code extension to populate the marketplace UI. Users can browse, search, and install MCP servers directly from the extension. | ||
|
|
||
| ## Contributing | ||
|
|
||
| To add a new MCP server to the marketplace: | ||
|
|
||
| 1. Add an entry to `mcps.yaml` following the schema | ||
| 2. Ensure all required fields are provided | ||
| 3. Test the installation methods | ||
| 4. Submit a pull request | ||
|
|
||
| ## References | ||
|
|
||
| - [VoiceVox MCP Server Repository](https://github.com/Sunwood-ai-labs/mcp-voicevox) | ||
| - [VoiceVox MCP Server PyPI Package](https://pypi.org/project/mcp-server-voicevox/) | ||
| - [Model Context Protocol Documentation](https://docs.roocode.com/advanced-usage/mcp) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| items: | ||
| - id: "voicevox-tts" | ||
| name: "VoiceVox Text-to-Speech Server" | ||
| description: "Japanese Text-to-Speech integration using VoiceVox engine with multiple voice characters and customizable playback settings" | ||
| author: "Sunwood AI Labs" | ||
| authorUrl: "https://github.com/Sunwood-ai-labs" | ||
| url: "https://github.com/Sunwood-ai-labs/mcp-voicevox" | ||
| tags: | ||
| - "text-to-speech" | ||
| - "japanese" | ||
| - "audio" | ||
| - "voice" | ||
| - "accessibility" | ||
| - "content-creation" | ||
| prerequisites: | ||
| - "VoiceVox Engine running (locally or remotely)" | ||
| - "Python 3.10+" | ||
| content: | ||
| - name: "uvx (Recommended)" | ||
| content: | | ||
| { | ||
| "voicevox": { | ||
| "command": "uvx", | ||
| "args": ["mcp-server-voicevox", "--voicevox-url=http://localhost:50021"] | ||
| } | ||
| } | ||
| parameters: | ||
| - name: "VoiceVox URL" | ||
| key: "voicevox-url" | ||
| placeholder: "http://localhost:50021" | ||
| optional: true | ||
| prerequisites: | ||
| - "uvx installed (pip install uvx)" | ||
| - "VoiceVox Engine running on specified URL" | ||
| - name: "pip install" | ||
| content: | | ||
| { | ||
| "voicevox": { | ||
| "command": "python", | ||
| "args": ["-m", "mcp_server_voicevox", "--voicevox-url=http://localhost:50021"] | ||
| } | ||
| } | ||
| parameters: | ||
| - name: "VoiceVox URL" | ||
| key: "voicevox-url" | ||
| placeholder: "http://localhost:50021" | ||
| optional: true | ||
| prerequisites: | ||
| - "pip install mcp-server-voicevox" | ||
| - "VoiceVox Engine running on specified URL" | ||
| - name: "Custom Configuration" | ||
| content: | | ||
| { | ||
| "voicevox": { | ||
| "command": "uvx", | ||
| "args": ["mcp-server-voicevox", "--voicevox-url={{voicevox-url}}", "--default-speaker={{default-speaker}}", "--speed={{speed}}"] | ||
| } | ||
| } | ||
| parameters: | ||
| - name: "VoiceVox URL" | ||
| key: "voicevox-url" | ||
| placeholder: "http://localhost:50021" | ||
| optional: false | ||
| - name: "Default Speaker ID" | ||
| key: "default-speaker" | ||
| placeholder: "1" | ||
| optional: true | ||
| - name: "Speech Speed" | ||
| key: "speed" | ||
| placeholder: "1.0" | ||
| optional: true | ||
| prerequisites: | ||
| - "uvx installed (pip install uvx)" | ||
| - "VoiceVox Engine running on specified URL" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an inconsistency in the module naming. In the 'uvx (Recommended)' and 'Custom Configuration' sections, the command argument is 'mcp-server-voicevox', but in the 'pip install' section, it appears as 'mcp_server_voicevox'. Please confirm if this is intentional or if it should be standardized.