/ الدليل / الملعب / 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 مصفوفة من كائنات الخادم بدلاً من خريطة.

~/.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