
What is YepCode MCP Server?
An MCP (Model Context Protocol) server that enables AI platforms to interact with YepCode's infrastructure. Turn your YepCode processes into powerful tools that AI assistants can use directly.
Why YepCode MCP Server?
- Seamless AI Integration: Convert YepCode processes into AI-ready tools with zero configuration
- Real-time Process Control: Enable direct interaction between AI systems and your workflows
- Enterprise-Grade Security: Execute code in YepCode's isolated, production-ready environments
- Universal Compatibility: Integrate with any AI platform supporting the Model Context Protocol
Integration Guide
YepCode MCP server can be integrated with AI platforms like Cursor or Claude Desktop using either NPX or Docker.
Required Environment Variables
YEPCODE_API_TOKEN: Your YepCode API token. How to obtain:
- Sign up to YepCode Cloud
- Get your API token from your workspace under:
Settings > API credentials
Using NPX
Add the following configuration to your AI platform settings:
{
"mcpServers": {
"yepcode-mcp-server": {
"command": "npx",
"args": ["-y", "@yepcode/mcp-server"],
"env": {
"YEPCODE_API_TOKEN": "your_api_token_here",
}
}
}
}
Using Docker
- Build the container image:
docker build -t yepcode/mcp-server .
- Add the following configuration to your AI platform settings:
{
"mcpServers": {
"yepcode-mcp-server": {
"command": "docker",
"args": [
"run",
"-d",
"-e",
"YEPCODE_API_TOKEN=your_api_token_here",
"yepcode/mcp-server"
]
}
}
}
Debugging
Debugging MCP servers can be tricky since they communicate over stdio. To make this easier, we recommend using the MCP Inspector, which you can run with the following command:
npm run inspector
This will start a server where you can access debugging tools directly in your browser.
YepCode MCP Tools Reference
The MCP server provides several tools to interact with YepCode's infrastructure:
Code Execution
run_code
Executes code in YepCode's secure environment.
{
code: string;
options?: {
language?: string;
comment?: string;
settings?: Record<string, unknown>;
}
}
{
success: boolean;
returnValue?: unknown;
logs?: string[];
error?: string;
}
Environment Management
set_env_var
Sets an environment variable in the YepCode workspace.
{
key: string;
value: string;
isSensitive?: boolean;
}
remove_env_var
Removes an environment variable from the YepCode workspace.
{
key: string;
}
Process Execution
The MCP server can expose your YepCode Processes as individual MCP tools, making them directly accessible to AI assistants. This feature is enabled by just adding the mcp-tool tag to your process (see our docs to learn more about process tags).
There will be a tool for each exposed process: run_ycp_<process_slug> (or run_ycp_<process_id> if tool name is longer than 60 characters).
run_ycp_<process_slug>
{
parameters?: any;
options?: {
tag?: string;
comment?: string;
};
synchronousExecution?: boolean;
}
{
executionId: string;
logs: string[];
returnValue?: unknown;
error?: string;
}
{
executionId: string;
}
get_execution
Retrieves the result of a process execution.
{
executionId: string;
}
{
executionId: string;
logs: string[];
returnValue?: unknown;
error?: string;
}
License
This project is licensed under the MIT License - see the LICENSE file for details.