Meloqa
БесплатноНе проверенExposes every operation from the meloQA v1 API as MCP tools, enabling LLM clients to read and manage meloQA projects, test cases, cycles, executions, bugs, link
Описание
Exposes every operation from the meloQA v1 API as MCP tools, enabling LLM clients to read and manage meloQA projects, test cases, cycles, executions, bugs, links, and reference data.
README
Model Context Protocol (MCP) server for the meloQA public v1 API.
Exposes every operation from the v1 OpenAPI spec as an MCP tool, so LLM clients (Claude Desktop, Claude Code, Cursor, etc.) can read and manage meloQA projects, test cases, cycles, executions, bugs, links, and reference data.
Status: pre-release. Defaults to the public endpoint
https://api.meloqa.com; overrideMELOQA_BASE_URLto point at another instance (e.g. a localhttp://localhost:3000).
Requirements
- Node.js 18+ (uses native
fetch). - A meloQA API token (see User Menu → API Tokens in the meloQA app).
Install
The package is published on npm as @meloqa/mcp-server.
You don't need to install it manually — the MCP client config below runs it on demand with npx, which fetches the latest version automatically:
npx -y @meloqa/mcp-server
To pin it globally instead (exposes the meloqa-mcp binary):
npm install -g @meloqa/mcp-server
Configure in your MCP client
Claude Desktop / Claude Code
Add an entry to your MCP config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS for Claude Desktop, or .claude.json for Claude Code):
{
"mcpServers": {
"meloqa": {
"command": "npx",
"args": ["-y", "@meloqa/mcp-server"],
"env": {
"MELOQA_API_TOKEN": "your-token-here",
"MELOQA_BASE_URL": "https://api.meloqa.com"
}
}
}
}
Restart the client. The meloqa server should appear with ~80 tools (one per v1 endpoint).
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
MELOQA_API_TOKEN |
yes | — | API token sent as Authorization: Bearer <token>. |
MELOQA_BASE_URL |
no | https://api.meloqa.com |
Base URL of the meloQA instance. Override to point at another deployment (e.g. http://localhost:3000). |
MELOQA_RATE_LIMIT |
no | 30 |
Client-side limit (requests/minute) used to throttle outgoing calls. Match the server's limit. |
Token lifecycle
The token sits in plaintext inside your MCP client config (e.g. ~/.claude.json). The file is chmod 600 by default, but the token still lives on disk — treat it as a credential.
To rotate (recommended periodically, and immediately if you suspect exposure):
- Open the meloQA UI → User Menu → API Tokens.
- Click Revoke on the current token. It stops working server-side within seconds.
- Click Generate new token and copy the new value.
- Replace
MELOQA_API_TOKENin your MCP client config with the new value. - Restart the MCP client (Claude Desktop / Claude Code / etc.) so it re-spawns the server with the updated env.
Per-machine tokens: generate a separate token for each machine/environment so revoking one doesn't break the others.
Do not commit your MCP client config (~/.claude.json, .mcp.json, claude_desktop_config.json) to a public repo — it contains the token.
Tools
Tool names follow <resource>_<verb>, derived from the OpenAPI spec:
<resource>_list,<resource>_get,<resource>_create,<resource>_update,<resource>_deletefor CRUD endpoints.- Action endpoints keep the action as the suffix:
executions_run,executions_pause,executions_finish,test_cases_unarchive,links_batch_create. - Sub-resource listings use the parent resource as the prefix:
projects_members_list,projects_execution_statuses_list, etc.
Each tool's description includes the OpenAPI summary, the tag, and any validation rules documented on the endpoint (e.g. max lengths, required referenced IDs).
Behavior notes
- Auth header: the token is sent as
Authorization: Bearer <token>(RFC 6750). - Rate limit: the client uses an in-process sliding-window limiter (default 30 req/min). It blocks outgoing calls until a slot is available. If you hit the server-side 429 anyway, the tool call surfaces a clear error.
- Errors: non-2xx responses (400/401/403/404/etc.) are returned as MCP tool errors with the response body included.
Development
npm install
npm run sync-spec # refresh spec/openapi.json from MELOQA_SPEC_URL (default http://localhost:3000/v1/docs.json)
npm run gen # regenerate src/tools.generated.ts from the spec
npm run build # gen + tsc → dist/
npm run dev # run from source via tsx
To test the generated server against a running meloQA instance:
MELOQA_API_TOKEN=... MELOQA_BASE_URL=https://api.meloqa.com npm run dev
Then pipe JSON-RPC messages on stdin or wire it up via an MCP client.
License
MIT
Установка Meloqa
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/swl-informatica/meloQA-MCPFAQ
Meloqa MCP бесплатный?
Да, Meloqa MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Meloqa?
Нет, Meloqa работает без API-ключей и переменных окружения.
Meloqa — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Meloqa в Claude Desktop, Claude Code или Cursor?
Открой Meloqa на 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 Meloqa with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
