Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Codaveri Server

БесплатноНе проверен

MCP server for executing code in various languages via the Codaveri API.

GitHubEmbed

Описание

MCP server for executing code in various languages via the Codaveri API.

README

This is a Model-Context-Protocol (MCP) server for the Codaveri API, allowing you to execute code in various languages.

Installation

  1. Clone the repository:

    git clone https://github.com/satviksinha/codaveri-mcp-server.git
    
  2. Install the dependencies:

    npm install
    

Configuration

  1. Create a .env.development.local file in the root of the project.
  2. Add your Codaveri API key to the file:
    API_KEY=<your_codaveri_api_key>
    CODAVERI_API_BASE_URL=<codaveri-url>
    

Using this MCP server from any repo

When you run the codaveri MCP server from another repository (your client repo or any working directory), it looks for environment variables in a .env.development.local file in the current working directory.

  • Create a .env.development.local file in that repo as well, with the same variables:
API_KEY=your_codaveri_api_key
CODAVERI_API_BASE_URL=https://staging.codaveri.com

Notes:

  • The file must be placed in the repo where you execute the codaveri command (because dotenv loads from the current working directory).
  • Alternatively, you can export these variables in your shell environment instead of using the file.

Building the Server

To build the server, run the following command:

npm run build

This will compile the TypeScript code into JavaScript and place it in the build directory.

Running the Server

You can run the server locally using npm link:

  1. Link the package to make the codaveri command available globally:

    npm link
    
  2. Now you can run the server by simply typing codaveri in your terminal.

Client Integration

To use this server in an MCP client, you need to configure the client to connect to the codaveri command.

Here is an example of how you might configure your MCP client:

{
  "mcpServers": {
    "codaveri": {
      "command": "codaveri"
    }
  }
}

executeCode Tool

This server provides a single tool, executeCode.

Description

Executes a given code snippet in a specified language and returns the output.

Parameters

  • code (string, required): The code to be executed.
  • language (string, required): The programming language of the code. Supported languages are:
    • python
    • javascript
    • java
    • c
    • cpp
    • typescript
    • go
    • rust
    • csharp

Example Usage in an MCP Client

executeCode(code="print('Hello, world!')", language="python")

Example Output

The tool will return the standard output of the executed code.

{
  "content": [
    {
      "type": "text",
      "text": "Hello, world!\\n"
    }
  ]
}

from github.com/satviksinha/codaveri-mcp-server

Установка Codaveri Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/satviksinha/codaveri-mcp-server

FAQ

Codaveri Server MCP бесплатный?

Да, Codaveri Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Codaveri Server?

Нет, Codaveri Server работает без API-ключей и переменных окружения.

Codaveri Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Codaveri Server в Claude Desktop, Claude Code или Cursor?

Открой Codaveri Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Codaveri Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development