Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте OpenProject одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
Summary
OpenProject: projects, work packages with their activities, versions, time entries, users and statuses, queried with OpenProject's filter grammar. API v3, Basic auth with the literal username `apikey`.
Попробуй спросить
Примеры промптов для OpenProject
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → OpenProject, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
OpenProject + Gemini
OpenProject: projects, work packages with their activities, versions, time entries, users and statuses, queried with OpenProject's filter grammar. API v3, Basic auth with the literal username apikey.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
OPENPROJECT_URL, OPENPROJECT_API_KEY
Шаг 1 — Получите учётные данные
Getting a key
- In OpenProject open My Account → Access tokens and generate an API token.
- Set
OPENPROJECT_URLto your instance root (no trailing slash) andOPENPROJECT_API_KEYto the token.
The Basic-auth username is the literal string apikey. Not your login name — the word apikey, with the token as the password. This adapter does it for you, and it is the first thing to check when a token you know is valid returns 401.
Permissions follow the user. The token inherits its owner's project memberships and roles. A project the user is not a member of is simply absent from the results, not an error.
…(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 —OpenProjectдолжен быть доступен. - Vertex AI Studio: передайте
https://cloud.anythingmcp.com/mcpв массивtoolsзапроса с тем же Bearer-заголовком.
Доступные инструменты
| Tool | What it does |
|---|---|
openproject_get_me | Read the user the API token belongs to, with their name, e-mail, language and admin flag |
openproject_list_projects | List projects with their identifier, name, status, description and active flag |
openproject_list_work_packages | List work packages — tasks, bugs, features, milestones — across all projects, with their type, status, assignee, dates and priority |
openproject_list_project_work_packages | List the work packages inside one project — the usual scope for 'what is open on this project' and much cheaper than filtering globally |
openproject_get_work_package | Read one work package in full: description, type, status, assignee, dates, estimated and spent time, and its custom fields |
openproject_list_work_package_activities | Read the activity stream of one work package: every comment and field change in order, with author and timestamp |
openproject_list_time_entries | List logged time entries with their user, work package, date, hours and comment — the raw data behind any effort report |
openproject_list_versions | List versions (releases and sprints) with their name, status, due date and the project they belong to |
openproject_list_users | List users with their name, e-mail, login and status, to resolve who a work package is assigned to |
openproject_list_statuses | List the work-package statuses this instance defines, with their id, name and whether each counts as closed |
FAQ
Поддерживают ли Gemini 1.5 Pro или 2.x MCP? Да — Gemini CLI ≥ 0.4 и Vertex AI tools API принимают MCP-коннекторы httpUrl с Bearer-заголовком.
Следующие шаги
Это руководство помогло?