/ ディレクトリ / プレイグラウンド / 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 は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"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と組み合わせて10倍の力を

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

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る