Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте Redmine одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
Summary
Redmine project management: issues with their journals, projects, versions, time entries, users and the enumerations behind statuses, priorities and trackers. REST API, API-key auth against your own instance.
Попробуй спросить
Примеры промптов для Redmine
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Redmine, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
Redmine + Gemini
Redmine project management: issues with their journals, projects, versions, time entries, users and the enumerations behind statuses, priorities and trackers. REST API, API-key auth against your own instance.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
REDMINE_URL, REDMINE_API_KEY
Шаг 1 — Получите учётные данные
Turn the REST API on first. It is off by default.
- As an administrator go to Administration → Settings → API and tick Enable REST web service.
- Open My account for the user the agent should act as; the API access key is in the right-hand sidebar. Show it and copy it.
- Set
REDMINE_URLto your instance root (no trailing slash) andREDMINE_API_KEYto the key.
The header is X-Redmine-API-Key. Redmine also accepts the key as a key= query parameter, but a header keeps it out of the web server's access log.
…(continued in the in-app connector instructions)
Шаг 2 — Установите адаптер
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Шаг 3 — Добавьте коннектор в Gemini
Gemini CLI читает MCP-серверы из ~/.gemini/settings.json (или %APPDATA%\gemini\settings.json в Windows). Добавьте:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите
gemini. - Запустите
/mcpв Gemini CLI —Redmineдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| Tool | What it does |
|---|---|
redmine_get_current_user | Read the user the API key belongs to, with their login, name, e-mail and project memberships |
redmine_list_projects | List projects with their id, identifier, name, description and status |
redmine_list_issues | List issues with Redmine's filter operators |
redmine_get_issue | Read one issue in full with its journals — the comment and field-change history, which the list endpoint omits because it can be long |
redmine_list_project_versions | List the versions (milestones and sprints) of one project with their name, due date, status and sharing |
redmine_list_time_entries | List logged time entries with their user, issue, project, date, hours and activity — the raw data behind any effort report |
redmine_list_users | List users with their login, name, e-mail and status, to resolve who an issue is assigned to |
redmine_list_issue_statuses | List the issue statuses this instance defines, with their id and whether each closes the issue |
redmine_list_trackers | List the trackers (Bug, Feature, Support and any custom ones) with their id and default status, so a tracker_id filter can be composed |
redmine_add_issue_note | Add a note to an issue |
FAQ
Поддерживают ли Gemini 1.5 Pro или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?