@venelx/mcp
Enables AI assistants to manage and operate Venelx CI/CD pipelines through the Venelx REST API, including listing projects, triggering builds, checking status, tailing logs, accessing artifacts and workers, and diagnosing signing or GitHub access.
README
@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 |
|---|---|
read |
All read-only tools (list projects, status, logs, artifacts, …) |
write |
Everything read allows, plus trigger_build (build-trigger endpoints) |
Tokens look like vx_.... Treat them like passwords — pass them via environment
variables, never commit them.
Configuration
| Environment variable | Required | Default | Description |
|---|---|---|---|
VENELX_TOKEN |
yes | — | Personal API token (vx_...) |
VENELX_API_URL |
no | https://api.venelx.com |
API base URL (self-hosted etc.) |
Install & run
Claude Code
claude mcp add venelx --env VENELX_TOKEN=vx_... -- npx -y @venelx/mcp
Cursor
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 build
Then 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 |
|---|---|---|
list_projects |
read | List projects the token can access (id, name, GitHub URL, platforms, role). |
get_project |
read | Project details plus a GitHub access summary. |
trigger_build |
write | Queue a build for a platform (ios, android, …). Surfaces skipReason (e.g. signing_not_ready, github_token_invalid). |
build_status |
read | Current pipeline status per platform + the 10 most recent builds. |
tail_logs |
read | Last N lines of a build log (latest build, or a given buildId). |
list_artifacts |
read | Build artifacts for a project. |
list_workers |
read | Build workers owned by the account (name, status, capabilities). |
signing_status |
read | Code-signing readiness, optionally per platform (ios/android). |
github_access |
read | GitHub repo access diagnosis: githubAccess {ok, reason, message} + auth source label. |
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.