# riza-mcp

> MCP Server

This repository provides a MCP server implementation that wraps the Riza API, offering endpoints as individual tools for LLMs to securely execute code and manage tools on Riza's isolated code interpreter.

## Overview

- **Category:** AI
- **Language:** JavaScript
- **Stars:** 13
- **Forks:** 1
- **Owner:** riza-io
- **GitHub:** https://github.com/riza-io/riza-mcp
- **Created:** 2024-12-11T22:27:28+00:00
- **Updated:** 2025-03-28T20:23:52+00:00
- **Source:** https://model-context-protocol.com/servers/riza-api-llm-tool-execution-server

## Setup

## Setup

Configure with Claude Desktop as below, or adapt as necessary for your MCP client. Get a free Riza API key in your [Riza Dashboard](https://dashboard.riza.io).

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

## Tools

## Available Tools

1. `create_tool` (Your LLM can write code and save it as a tool using the Riza Tools API.)
2. `fetch_tool` (Your LLM can fetch saved Riza tools, including source code, which can be useful for editing tools.)
3. `execute_tool` (Executes a saved tool securely on Riza's code interpreter API.)
4. `edit_tool` (Edits an existing saved tool.)
5. `list_tools` (Lists available saved tools.)
6. `execute_code` (Executes arbitrary code safely on Riza's code interpreter API, without saving it as a tool.)
