Пропустите установку. Заработает меньше чем за 2 минуты.
Начните бесплатный период на cloud.anythingmcp.com, добавьте Nextcloud одним кликом и направьте свой ИИ-клиент (Claude, ChatGPT, Copilot или Cursor) на сгенерированный MCP-эндпоинт. Без Docker, без git clone, без опыта разработки.
Summary
Nextcloud OCS API: users, groups, file shares, app capabilities and server status on your own Nextcloud. Basic auth with an app password, the OCS-APIRequest header and format=json.
Попробуй спросить
Примеры промптов для Nextcloud
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Nextcloud, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
Nextcloud + Cursor
Nextcloud OCS API: users, groups, file shares, app capabilities and server status on your own Nextcloud. Basic auth with an app password, the OCS-APIRequest header and format=json.
Предварительные требования
Полные инструкции по настройке встроены в коннектор (видны в магазине при выборе коннектора). Требуемые переменные окружения:
NEXTCLOUD_URL, NEXTCLOUD_USERNAME, NEXTCLOUD_APP_PASSWORD
Шаг 1 — Получите учётные данные
Use an app password, never the account password.
- Sign in to Nextcloud and open Settings → Security → Devices & sessions.
- Create a new app password named e.g.
AnythingMCP. Nextcloud shows it once. - Set
NEXTCLOUD_URLto your instance root (no trailing slash),NEXTCLOUD_USERNAMEto the login name andNEXTCLOUD_APP_PASSWORDto the generated value. An app password can be revoked on its own, and it sidesteps two-factor authentication, which would otherwise break API access entirely.
…(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 — Добавьте коннектор в Cursor
Cursor читает MCP-серверы из ~/.cursor/mcp.json. Добавьте эту запись:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Получите MCP API key в AnythingMCP → Profile → MCP API Keys → New Key.
- Сохраните файл и перезапустите Cursor.
- Откройте Cursor → Settings → MCP и убедитесь, что
Nextcloudотображается как "Connected". - Начинайте чат — все инструменты
Nextcloudдоступны.
Доступные инструменты
| Tool | What it does |
|---|---|
nextcloud_get_capabilities | Read the server's capabilities: Nextcloud version, enabled apps and their feature flags |
nextcloud_get_user_status | Read the status of the account the app password belongs to: quota, used space, display name, e-mail, groups and last login |
nextcloud_list_users | List user ids on the instance, optionally filtered by a search fragment |
nextcloud_get_user | Read one user's details: display name, e-mail, quota, group memberships, last login and whether the account is enabled |
nextcloud_list_groups | List the groups defined on the instance, optionally filtered by a search fragment |
nextcloud_list_group_members | List the user ids in one group — who actually has access to whatever is shared with that group |
nextcloud_list_shares | List shares the account owns or received, with their type, recipient, permissions, expiry and public link URL |
nextcloud_get_share | Read one share by its id: exactly who it is shared with, at what permission level, and when it expires |
nextcloud_create_share | Create a share |
FAQ
Поддерживает ли Cursor кастомные MCP-серверы на бесплатном тарифе? Да — MCP доступен на Hobby, Pro и Business.
Следующие шаги
Это руководство помогло?