/ Verzeichnis / Playground / YepCode MCP
● Offiziell yepcode ⚡ Sofort

YepCode MCP

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

yepcode-mcp.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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"
      ]
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: YepCode MCP

Give Claude controlled access to internal services without exposing secrets

👤 Platform teams ⏱ ~15 min intermediate

Wann einsetzen: You want Claude to call internal systems (CRM, payment, etc.) without putting credentials in the model context.

Voraussetzungen
  • Server/skill installed and authenticated — See repo README
Ablauf
  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.✓ Kopiert
    → Process available in MCP
  2. Call from Claude
    Refund order #12345 with reason 'damaged in shipping'.✓ Kopiert
    → YepCode executes refund-order; Claude reports success/failure

Ergebnis: Claude gets a typed, auditable interface to your internal systems — no secrets in chat.

Fallstricke
  • Every YepCode call costs execution minutes — Every YepCode call costs execution minutes — keep processes idempotent so retries are safe.
Kombinieren mit: github

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

yepcode-mcp + github

Pair with github for complementary capabilities

Use this server together with github to complete a multi-step task.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
list_processes (none) Discover what processes are exposed free
run_process slug, input Execute a specific business process Per YepCode plan

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
See provider docs for rate limits
Tokens pro Aufruf
Varies by tool
Kosten in €
See repo README for pricing details
Tipp
Cache tool results and avoid repeated identical calls.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Use environment variables; never commit secrets
Datenabfluss: Tool calls go to the provider's API as documented

Fehlerbehebung

Häufige Fehler und Lösungen

401 Invalid API token

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

Prüfen: list_processes returns your processes
process failed mid-run

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

Prüfen: Re-run with the same input from the UI

Alternativen

YepCode MCP vs. andere

AlternativeWann stattdessenKompromiss
Pipedream MCPYou want a no-code workflow builder layerDifferent programming model

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen