riza-mcp

Riza MCP provides an isolated code interpreter for executing code generated by LLMs (Large Language Models). This MCP server implementation wraps the Riza API and presents endpoints as individual tools. Developers can obtain a Riza API key and integrate it with clients like Claude Desktop to create, execute, and edit code securely.

GitHub Stars

11

User Rating

Not Rated

Favorites

0

Views

21

Forks

6

Issues

3

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes
Requirements
Node.js: 18.0.0以上
npm: 8.0.0以上
+1 more

Installation

Installation

Prerequisites

Please specify required software and versions:
Node.js: 18.0.0 or higher
npm: 8.0.0 or higher
Claude Desktop: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/riza-io/riza-mcp
cd riza-mcp

2. Install Dependencies

bash
npm install

3. Configure Claude Desktop

Edit claude_desktop_config.json to add the MCP server:
json
{
  "mcpServers": {
    "riza-server": {
      "command": "npx",
      "args": ["@riza-io/riza-mcp"],
      "env": {
        "RIZA_API_KEY": "your-api-key"
      }
    }
  }
}

4. Start Server

bash
npm start

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check Node.js version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.

Configuration

Configuration

Basic Configuration

Claude Desktop Setup

Edit ~/.config/claude-desktop/claude_desktop_config.json (macOS/Linux) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
json
{
  "mcpServers": {
    "riza-server": {
      "command": "npx",
      "args": ["@riza-io/riza-mcp"],
      "env": {
        "RIZA_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

Set the following environment variables as needed:
bash
export RIZA_API_KEY="your-api-key"
export DEBUG="true"

Advanced Configuration

Security Settings

Store API keys in environment variables or secure configuration files
Set appropriate file access permissions
Adjust logging levels

Performance Tuning

Configure timeout values
Limit concurrent executions
Set up caching

Configuration Examples

Basic Configuration

json
{
  "mcpServers": {
    "riza-server": {
      "command": "npx",
      "args": ["@riza-io/riza-mcp"],
      "env": {
        "RIZA_API_KEY": "your-api-key"
      }
    }
  }
}

Advanced Configuration

json
{
  "mcpServers": {
    "advanced-mcp": {
      "command": "node",
      "args": ["server.js"],
      "env": {
        "PORT": "3000",
        "LOG_LEVEL": "info"
      }
    }
  }
}

Examples

Examples

Basic Usage

Here are basic usage examples for the MCP server:

Using with Claude Desktop

1Verify MCP Server Startup
Open Claude Desktop and confirm that the configuration has been loaded correctly.
2Execute Basic Commands

   Available tools from this MCP server:
   - create_tool: Create a new tool
   - fetch_tool: Fetch an existing tool
   

Programmatic Usage

javascript
// JavaScript example (Node.js)
const { MCPClient } = require('@modelcontextprotocol/client');

const client = new MCPClient();
await client.connect();

// Execute tool
const result = await client.callTool('create_tool', {
  code: 'console.log("Hello, World!");'
});

console.log(result);

Advanced Examples

Automation Script

bash
#!/bin/bash

Batch processing example

for file in *.txt; do mcp-tool process "$file" done

API Integration

python

Python example

import requests import json def call_mcp_tool(tool_name, params): response = requests.post( 'http://localhost:3000/mcp/call', json={ 'tool': tool_name, 'parameters': params } ) return response.json()

Usage example

result = call_mcp_tool('fetch_tool', { 'tool_id': '12345' })

Use Cases

Projects where LLMs automatically generate code and execute it via Riza
Scenarios where developers create tools using the Riza API and share them within a team
Use cases for version control of code, retrieving and editing previous tools
Environments where code is executed in real-time, allowing developers to see results while progressing

Additional Resources