mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
| .. | ||
| mcps.yaml | ||
| README.md | ||
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 marketplacemodes.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 servername- Display namedescription- Detailed description of functionalityauthor- Author nameauthorUrl- Author's website or GitHub profileurl- Repository or documentation URLtags- Array of tags for categorizationprerequisites- Array of requirements needed before installationcontent- 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 settingsparameters- Optional parameters that users can customizeprerequisites- Method-specific prerequisites
Parameters
Parameters allow users to customize the installation:
name- Display name for the parameterkey- Key used in the configuration templateplaceholder- Default value or exampleoptional- 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
get_voices- Retrieve list of available voices from VoiceVoxtext_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
- uvx (Recommended) - Uses uvx to run the server directly
- pip install - Install via pip and run with Python
- 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:
- Add an entry to
mcps.yamlfollowing the schema - Ensure all required fields are provided
- Test the installation methods
- Submit a pull request