Riza MCP Server
Related Servers
Alternatives to Riza MCP Server
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityCmaintenanceEnables LLMs to execute Python code in a restricted sandbox for calculations and data analysis, without giving them a real shell.-
- AlicenseNot gradedqualityAmaintenanceEnables LLMs to execute Python code securely in a sandboxed environment. Supports configurable restrictions like no network access and returns results including files.MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to securely execute Python and JavaScript code in sandboxed environments, with file management and package installation.778 npm-
- AlicenseAqualityCmaintenanceConnects LLMs to the Piston code execution engine to run code in various languages.19MIT
- AlicenseNot gradedqualityAmaintenanceProvides sandboxed code execution for AI agents with support for Python, JavaScript, and shell commands. Includes comprehensive safety features like destructive pattern blocking, timeout protection, and restricted file access for secure production use.7 npm65 PyPIMIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that wraps the Riza Code Interpreter API and presents endpoints as individual tools.13-
TDQS
Scored across 6 tools
Each tool has a distinct role: create, fetch, edit, list, and execute self-written tools, plus execute_code for arbitrary ad-hoc code. The only potentially overlapping pair, execute_code and execute_tool, is clearly separated by whether the code is a saved tool or not.
All tool names follow a consistent snake_case verb_noun pattern, such as create_tool, fetch_tool, edit_tool, and execute_tool. The minor pluralization in list_tools is predictable and does not break the naming convention.
Six tools is well-suited to the server's purpose of managing and executing self-written tools. Each tool contributes a necessary operation without unnecessary bloat.
The set covers create, read, update, list, and execute, but lacks a delete/remove operation, which is a notable lifecycle gap. Additionally, list_tools references a use_tool that does not exist in the exposed tool set, though execute_tool appears to fill that role.