@venelx/mcp
Allows triggering and monitoring Android builds, including build status, logs, and artifacts, through the Venelx CI/CD platform.
Diagnoses GitHub repository access, reporting whether the configured token has valid access to connected repositories and surfacing reasons for failures.
Allows triggering and monitoring iOS builds, including build status, logs, and artifacts, through the Venelx CI/CD platform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@venelx/mcpTrigger an iOS build for my project and show its status."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@venelx/mcp
An MCP (Model Context Protocol) server that lets AI assistants (Claude Code, Cursor, Kimi Code, and any MCP-compatible client) operate the Venelx CI/CD platform through its REST API: list projects, trigger builds, check build status, tail logs, list artifacts and workers, and diagnose signing / GitHub access.
The server talks to the Venelx API over HTTPS and to your AI client over stdio.
Prerequisites
Node.js ≥ 18
A Venelx account with at least one project
A personal API token — create one in the Venelx dashboard at Account → API tokens: https://app.venelx.com/account/tokens
Token scopes
Scope | What it allows |
| All read-only tools (list projects, status, logs, artifacts, …) |
| Everything |
Tokens look like vx_.... Treat them like passwords — pass them via environment
variables, never commit them.
Related MCP server: Vercel MCP Relay Server
Configuration
Environment variable | Required | Default | Description |
| yes | — | Personal API token ( |
| no |
| API base URL (self-hosted etc.) |
Install & run
Claude Code
claude mcp add venelx --env VENELX_TOKEN=vx_... -- npx -y @venelx/mcpCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"venelx": {
"command": "npx",
"args": ["-y", "@venelx/mcp"],
"env": {
"VENELX_TOKEN": "vx_..."
}
}
}
}Kimi Code / generic MCP client
Same shape as above — add to your client's MCP JSON config:
{
"mcpServers": {
"venelx": {
"command": "npx",
"args": ["-y", "@venelx/mcp"],
"env": {
"VENELX_TOKEN": "vx_...",
"VENELX_API_URL": "https://api.venelx.com"
}
}
}
}Local development
git clone <repo> && cd venelx-mcp
npm install
npm run buildThen point your MCP client config at the local build:
{
"mcpServers": {
"venelx": {
"command": "node",
"args": ["/path/to/venelx-mcp/dist/index.js"],
"env": {
"VENELX_TOKEN": "vx_..."
}
}
}
}Tools
Tool | Scope needed | What it does |
| read | List projects the token can access (id, name, GitHub URL, platforms, role). |
| read | Project details plus a GitHub access summary. |
| write | Queue a build for a platform ( |
| read | Current pipeline status per platform + the 10 most recent builds. |
| read | Last N lines of a build log (latest build, or a given |
| read | Build artifacts for a project. |
| read | Build workers owned by the account (name, status, capabilities). |
| read | Code-signing readiness, optionally per platform ( |
| read | GitHub repo access diagnosis: |
Troubleshooting
401 Authentication failed —
VENELX_TOKENis missing, wrong, or revoked. Create a new token at Account → API tokens (https://app.venelx.com/account/tokens) and update your MCP config.403 Forbidden on
trigger_build— your token only has thereadscope. Create a token with the write scope.Could not reach the Venelx API (ECONNREFUSED / ENOTFOUND) — the API base URL is unreachable. Check
VENELX_API_URL(defaults tohttps://api.venelx.com) and your network.Nothing happens / no output — MCP servers speak JSON-RPC on stdout; run it through your MCP client, not directly in a terminal. Diagnostics are printed to stderr.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants to interact with Jenkins CI/CD systems for build management, job monitoring, console log analysis, and debugging through natural language commands.2MIT
- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with the Vercel REST API to manage projects, deployments, domains, environment variables, and teams through natural language commands.
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to query and manage GoCD pipelines, stages, and jobs through the Model Context Protocol. It allows users to trigger builds, analyze failures, and access build logs or artifacts using the GoCD REST API.2
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Jenkins CI/CD servers, including checking build status, triggering builds, and retrieving build logs.8MIT
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Give AI coding agents access to your Vynix visual feedback, bug reports, and AI diagnosis.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VenelX/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server