
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@yepcode/mcp-server
Advanced tools
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.
This MCP server allows you to:
Build specialized tools for your AI assistants by creating YepCode processes for:
We have published the MCP server as a package in npm, so you may use npx as command to start the server.
This is the tipical JSON confiuration to be added to tools like Cursor or Claude Desktop.
{
"mcpServers": {
"yepcode-mcp-server": {
"command": "npx",
"args": [
"-y",
"@yepcode/mcp-server"
],
"env": {
"YEPCODE_API_KEY":"your_api_key_here",
"YEPCODE_PROCESSES_AS_MCP_TOOLS": "true" // Optional: Expose YepCode processes as individual MCP tools
}
}
}
}
We also have a Dockerfile to build a container image that you can use to start the server.
For this, you need to download the source code and build the image with the following command:
docker build -t yepcode/mcp-server .
Then, you can configure the server with the docker command:
{
"mcpServers": {
"yepcode-mcp-server": {
"command": "docker",
"args": [
"run",
"-d",
"-e",
"YEPCODE_API_KEY=your_api_key_here",
"-e",
"YEPCODE_PROCESSES_AS_MCP_TOOLS=true",
"yepcode/mcp-server"
]
}
}
}
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.
Executes code in YepCode's secure environment.
// Input
{
code: string;
options?: {
language?: string; // Programming language (default: 'javascript')
comment?: string; // Execution context
settings?: Record<string, unknown>; // Runtime settings
}
}
// Response
{
success: boolean;
returnValue?: unknown; // Execution result
logs?: string[]; // Console output
error?: string;
}
Sets an environment variable.
// Input
{
key: string;
value: string;
isSensitive?: boolean; // Mask value in logs (default: true)
}
Removes an environment variable.
// Input
{
key: string;
}
When YEPCODE_PROCESSES_AS_MCP_TOOLS=true, each YepCode process becomes available as an individual MCP tool. This provides better discoverability and direct access to your processes from AI assistants.
There will be a tool for each YepCode process: run_yepcode_process_<process_slug>.
// Input
{
parameters?: any;
options?: {
tag?: string; // Process version
comment?: string; // Execution context
};
synchronousExecution?: boolean; // Wait for completion (default: true)
}
// Response (synchronous execution)
{
executionId: string;
logs: string[];
returnValue?: unknown;
error?: string;
}
// Response (asynchronous execution)
{
executionId: string;
}
Retrieves the result of an execution.
// Input
{
executionId: string;
}
// Response
{
executionId: string;
logs: string[];
returnValue?: unknown;
error?: string;
}
All rights reserved by YepCode. Usage is subject to YepCode Terms of Service.
FAQs
MCP server for YepCode
The npm package @yepcode/mcp-server receives a total of 9 weekly downloads. As such, @yepcode/mcp-server popularity was classified as not popular.
We found that @yepcode/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.