Subscribe
23 Dec, 2025

CLI Settings Support

Added support for configurable CLI settings that can be managed via yepcode settings:get, yepcode settings:set, and yepcode settings:remove commands. The following settings are now available

  • disableUpdateNotifier (default: `false`) - Disable update notifier
  • ignoreProcessVersions (default: `false`) - Ignore process versions so they are not downloaded on clone or pull
  • ignoreWorkspaceNotEmpty (default: `false`) - Ignore workspace not empty error
  • ignoreYepCodeRunProcesses (default: `false`) - Ignore YepCode run processes so they are not downloaded on clone or pull
  • localVariablesFileName (default: `variables.local.env`) - Local variables file name
  • skipAiAssitantSetup (default: `false`) - Skip AI assistant setup
  • variablesFileName (default: `variables.env`) - Variables file name
21 Dec, 2025

✨ Yep Agent – Your AI Coding Partner

Our one-line pitch has always been “The Zapier for Developers” — but maybe it’s time for a new one: “The Lovable for Automations” 🤔

After building in stealth mode, we’re excited to unveil Yep Agent: an AI coding partner designed for the modern integration landscape.

Yep Agent can:

  • Discover APIs, services, and databases through code execution
  • Iterate automatically until your code is tested and fully operational
  • Ship production-ready integrations directly from a chat interface
  • Give you full code access so you can customize as needed 👨‍💻

Just talk — Yep Agent listens, codes, connects, and delivers. Fast, adaptive, and fully in your control.

🎬 See it in action

15 Dec, 2025

Automatic MCP server configuration for local AI Coding Agents

To complement the new AI agent rules included in YepCode CLI clone, we’ve added the ability to automatically generate API credentials for accessing the YepCode MCP Server directly from local AI coding agents.

For each supported agent, we set up the proper MCP configuration, so the agent can securely and seamlessly interact with YepCode API and processes. This allows AI agents to call any MCP method or API endpoint directly from a prompt, taking full advantage of YepCode’s capabilities without manual configuration.

18 Nov, 2025

Coding agent rules generation on CLI clone

We’ve added support to the YepCode CLI clone command to generate clear, structured rules that can be consumed by AI coding agents. These rules are also available in our docs platform help agents better understand YepCode projects and how to work with them.

Currently supported agents:

  • Cursor
  • Claude Code
  • OpenAI Codex
  • Windsurf

While YepCode projects remain fully portable and avoid vendor lock-in, these rules allow AI agents to take advantage of YepCode’s built-in capabilities out of the box—such as parameters, datastore, and storage—resulting in more accurate and productive code generation.

27 Oct, 2025

MCP server: new streamable connections endpoint🚀

Endpoint:  https://cloud.yepcode.io/mcp/{teamSlugOrApiKey}

We’ve added support for streamable connections to the MCP server — allowing clients to open continuous HTTP streams and receive real-time updates without polling.

Highlights:

  • Using a teamSlug in the path enables OAuth authentication.
  • Using an apiKey keeps the existing auth flow.
  • Fully backward-compatible with existing MCP integrations.

URL examples:

  • https://cloud.yepcode.io/mcp/my-team
  • https://cloud.yepcode.io/mcp/sk-abc123xyz
07 Oct, 2025

Replaced disableRunCodeTool with new flexible tools argument in MCP server

In our MCP server, we’ve replaced the disableRunCodeTool flag with a new, more flexible tools argument. This change gives users fine-grained control over which tools are enabled.

You can now define which tools are enabled by using a comma-separated list of built-in tool categories and process tags:

  • Built-in categories: run_code: Enables the code execution tool executions: Enables execution management tools env_vars: Enables environment variable management tools storage: Enables storage management tools
  • Process tags: Any tag used in your YepCode processes (e.g. mcp-tool, core, api, automation, etc.). When specified, all processes with that tag are exposed as individual MCP tools.

If no tools are specified, all built-in tools are enabled by default, but no process tools are exposed.

Example SSE URL definition:

https://cloud.yepcode.io/mcp/sk-c2E....RD/sse?mcpOptions=runCodeCleanup&tools=run_code,storage,env_vars,core,api

03 Oct, 2025

Execution Engine Upgrade: Firecracker 13

We’ve upgraded our execution engine to Firecracker version 13, bringing significant improvements in performance, security, and efficiency. This upgrade enhances isolation between executions, reduces startup latency, and improves resource utilization — making your processes faster and more reliable. Firecracker 13 also includes the latest security patches and optimizations, ensuring a safer and smoother execution environment.

At YepCode, we prioritize keeping our execution engine and dependencies up to date. This upgrade is part of our ongoing commitment to maintain cutting-edge performance and security for all users.

15 Sep, 2025

Improved Execution Row Information

We’ve enhanced the execution row display to include both the startup delay (the time it took for the execution to begin) and the total duration. These two metrics are now shown together in the same cell for easier comparison. Additionally, hovering over the cell reveals the full execution timeline for more detailed insights.

05 Sep, 2025

Updated Runtime Environments: Node.js 22.19 & Python 3.13.7

We’ve upgraded our runtime environments to Node.js 22.19 and Python 3.13.7, bringing improved performance, stability, and access to the latest language features.

  • Node.js 22.19 delivers enhanced performance, updated V8 engine optimizations, and improved native module support. This ensures faster execution and better compatibility with modern JavaScript tools and libraries.
  • Python 3.13.7 provides new language features, performance improvements, and important security updates, giving you a more reliable and efficient environment for your workloads.

At YepCode, we always keep our runtimes up to date so you can rely on a secure, efficient, and future-proof execution platform.

17 Aug, 2025

Allow to define webhook async body answer

Before this feature, a webhook async execution always answer a body like this:

{"id":"cb045e6a-48e4-4bc4-a7be-a09bca0ffbe5","status":"CREATED","data":null}

Now, if a query param (async_response) is provided, that content will be the response body.

For example this request "/api/xxxx/webhooks/yyyy?async=true&async_response='Working on it'" will respond Working on it. If we provide false as async_response, no body will be provided.

HTTP codes won’t be affected.