Subscribe
07 Apr, 2025

Added YepCode MCP Server

YepCode MCP server allows AI platforms to seamlessly interact with YepCode infrastructure. This enables you to turn your YepCode processes into powerful tools accessible by AI assistants.

You can integrate the MCP server with platforms like Cursor or Claude Desktop using either:

  • Remote mode – Use our hosted MCP SSE server, no installation required.
  • Local mode – Run the MCP server locally using NPX or Docker.
16 Mar, 2025

Allow to see current plan limits in Team Settings

Go to the Settings tab to view your current limits. For example:

Plan limits example
Plan limits example

You can compare all plan limits in docs.

12 Mar, 2025

Add callback_url to executions REST Api endpoints

The callback_url setting allows you to receive execution results upon completion, whether it was successful or failed. It is supported in the Execute Process (Sync), Execute Process (Async), and Schedule Process endpoints.

callback_url body input example
callback_url body input example
12 Mar, 2025

Deprecate credentials usage

Since we added the ability to use dependencies in YepCode, it has created a maintainability challenge supporting all package versions with Credentials. As a result, we are deprecating them. You can still securely initialize your clients using environment variables. For example:

S3 example client creation with YepCode env variables
S3 example client creation with YepCode env variables
09 Mar, 2025

Allow to manage service accounts

You can now manage API credentials directly from the API Credentials tab in your team settings. These credentials can be used for YepCode REST API, YepCode Run or YepCode MCP Server.

API Credentials tab
API Credentials tab
02 Mar, 2025

Add AI Assistant

Configure your preferred AI assistant to help you build your processes.

AI Assistant config
AI Assistant config
19 Feb, 2025

Upgrade vm-executor to node to 22.x

JavaScript processes are now executed in Node.js 22.x.

16 Feb, 2025

Support dependencies at Process level

Dependencies will be global for your team by default, but if you need to use process scoped dependencies, you may do that enabling the flag under process dependencies settings:

Process dependencies scoped
Process dependencies scoped
26 Jan, 2025

Add process tags to REST Api

Manage your process tags using YepCode REST Api.

Get process tags API response
Get process tags API response
22 Jan, 2025

Allow to configure dependencies in process source code

Use the @add-package comment to manually add a dependency to your process. To specify a version, use the syntax: @add-package <package-name>=<version>. See the documentation for details. For example:

@add-package openai example
@add-package openai example