/ Каталог / Песочница / YepCode MCP
● Официальный yepcode ⚡ Сразу

YepCode MCP

автор yepcode · yepcode/mcp-server-js

Expose YepCode processes (serverless Node/Python jobs) as Claude tools.

YepCode is a hosted serverless platform that runs versioned Node/Python jobs with secrets, schedules, and HTTP triggers. This MCP turns each of your YepCode processes into a callable tool — so Claude can call your real backend logic without raw HTTP.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

yepcode-mcp.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "yepcode-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@yepcode/mcp-server"
      ]
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "yepcode-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@yepcode/mcp-server"
      ]
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "yepcode-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@yepcode/mcp-server"
      ]
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "yepcode-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@yepcode/mcp-server"
      ]
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "yepcode-mcp",
      "command": "npx",
      "args": [
        "-y",
        "@yepcode/mcp-server"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "yepcode-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "@yepcode/mcp-server"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add yepcode-mcp -- npx -y @yepcode/mcp-server

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: YepCode MCP

Give Claude controlled access to internal services without exposing secrets

👤 Platform teams ⏱ ~15 min intermediate

Когда использовать: You want Claude to call internal systems (CRM, payment, etc.) without putting credentials in the model context.

Предварительные требования
  • Server/skill installed and authenticated — See repo README
Поток
  1. Build a YepCode process
    (in YepCode UI) Write a process refund-order that calls your payment provider. Store the API key in YepCode secrets.✓ Скопировано
    → Process available in MCP
  2. Call from Claude
    Refund order #12345 with reason 'damaged in shipping'.✓ Скопировано
    → YepCode executes refund-order; Claude reports success/failure

Итог: Claude gets a typed, auditable interface to your internal systems — no secrets in chat.

Подводные камни
  • Every YepCode call costs execution minutes — Every YepCode call costs execution minutes — keep processes idempotent so retries are safe.
Сочетать с: github

Комбинации

Сочетайте с другими MCP — эффект x10

yepcode-mcp + github

Pair with github for complementary capabilities

Use this server together with github to complete a multi-step task.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
list_processes (none) Discover what processes are exposed free
run_process slug, input Execute a specific business process Per YepCode plan

Стоимость и лимиты

Во что обходится

Квота API
See provider docs for rate limits
Токенов на вызов
Varies by tool
Деньги
See repo README for pricing details
Совет
Cache tool results and avoid repeated identical calls.

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: Use environment variables; never commit secrets
Исходящий трафик: Tool calls go to the provider's API as documented

Устранение неполадок

Частые ошибки и исправления

401 Invalid API token

Create a YepCode API token in Settings → API and set YEPCODE_API_TOKEN.

Проверить: list_processes returns your processes
process failed mid-run

Open the YepCode UI execution log — it has full stack + secret-redacted inputs.

Проверить: Re-run with the same input from the UI

Альтернативы

YepCode MCP в сравнении

АльтернативаКогда использоватьКомпромисс
Pipedream MCPYou want a no-code workflow builder layerDifferent programming model

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills