- Home
- MCP servers
- Riza
Riza
- javascript
12
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"riza-io-riza-mcp": {
"command": "npx",
"args": [
"@riza-io/riza-mcp"
],
"env": {
"RIZA_API_KEY": "your-api-key"
}
}
}
}Riza MCP Server provides an isolated code interpreter through a dedicated MCP endpoint set. It wraps the Riza API and exposes tools you can call from your MCP client to write, save, fetch, and securely execute code, giving you a sandboxed environment for evaluating LLM-generated code. You can obtain a free API key from your Riza dashboard to enable these capabilities.
How to use
You interact with the Riza MCP Server through your MCP client by calling a set of tools that manage and run code tools inside Riza. The server exposes capabilities to create new tools from your code, retrieve existing tools (including their source code), execute tools securely, edit tools, list all available tools, and run arbitrary code in a safe interpreter.
Available tools
create_tool
Create a new tool from your code and save it in Riza using the Tools API. This tool can later be executed securely through execute_tool.
fetch_tool
Retrieve a saved tool from Riza, including its source code, for inspection or editing.
execute_tool
Run a saved tool inside Riza's secure code interpreter, enabling safe execution of generated code.
edit_tool
Modify the source or configuration of an existing saved tool.
list_tools
List all tools that have been saved in Riza.
execute_code
Execute arbitrary code directly in Riza's code interpreter API without saving it as a tool.