Simple Server
БесплатноНе проверенAn MCP server that gives AI agents full access to the Clever Cloud API through three tools: search, execute, and doc.
Описание
An MCP server that gives AI agents full access to the Clever Cloud API through three tools: search, execute, and doc.
README
An MCP server that gives AI agents full access to the Clever Cloud API through three tools: search, execute, and doc.
Instead of exposing hundreds of individual tools (one per API endpoint), the agent discovers available commands then writes JavaScript code to compose them — a pattern Cloudflare also explored as "Code Mode", but without needing any specific infrastructure.
[!IMPORTANT] This project is early software, don't use it on a production organisation without caution
How it works
- The agent calls
searchwith a keyword (e.g."deploy application") and gets back matching commands with their parameters - The agent calls
executewith JavaScript code that uses a pre-authenticated Clever Cloud client and the discovered commands:
const apps = await client.send(
new commands.ListApplicationCommand({ ownerId: "orga_xxx" }),
{ signal }
);
return apps.filter(a => a.state === "RUNNING");
- The agent calls
docto search Clever Cloud's documentation index or fetch a specific page as markdown — useful for conceptual questions the API catalog can't answer (runtimes, add-ons, deployment model, environment variables, etc.).
The code runs locally on your machine with a configurable timeout. The full @clevercloud/client command library is available — including automatic owner ID resolution, response transformation, and structured error handling.
Setup
Prerequisites
- Node.js >= 22
- A Clever Cloud API token (create one here)
Install
git clone https://github.com/CleverCloud/mcp-simple-server.git
cd mcp-simple-server
npm install
npm run generate-catalog
npm run build
Configure in Claude Code
Using the CLI:
claude mcp add clever-cloud \
-e CLEVER_CLOUD_API_TOKEN=your-api-token \
-- node /absolute/path/to/mcp-simple-server/dist/index.js
Or add a .mcp.json file at the root of your project:
{
"mcpServers": {
"clever-cloud": {
"command": "node",
"args": ["/absolute/path/to/mcp-simple-server/dist/index.js"],
"env": {
"CLEVER_CLOUD_API_TOKEN": "${CLEVER_CLOUD_API_TOKEN}"
}
}
}
}
The .mcp.json approach supports environment variable expansion (${VAR} or ${VAR:-default}), so you can keep your token in your shell environment rather than in the file itself.
Optional environment variables
| Variable | Default | Description |
|---|---|---|
CC_MCP_TIMEOUT_MS |
30000 |
Execution timeout in milliseconds |
CC_MCP_MAX_OUTPUT |
50000 |
Maximum output length in characters |
License
Apache-2.0 — Clever Cloud, 2026
Установка Simple Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/CleverCloud/mcp-simple-serverFAQ
Simple Server MCP бесплатный?
Да, Simple Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Simple Server?
Нет, Simple Server работает без API-ключей и переменных окружения.
Simple Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Simple Server в Claude Desktop, Claude Code или Cursor?
Открой Simple Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Simple Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
