Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Nextcloud con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
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.
Prueba a pedir
Prompts de ejemplo para Nextcloud
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Nextcloud, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Nextcloud + Gemini
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.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
NEXTCLOUD_URL, NEXTCLOUD_USERNAME, NEXTCLOUD_APP_PASSWORD
Paso 1 — Obtener credenciales
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)
Paso 2 — Instalar el adapter
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
Paso 3 — Añadir el conector en Gemini
Gemini CLI lee servidores MCP desde ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json en Windows). Añade:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Obtén tu MCP API key desde AnythingMCP → Perfil → MCP API Keys → Nueva Key.
- Guarda el archivo y reinicia
gemini. - Ejecuta
/mcpen la Gemini CLI —Nextclouddebería aparecer como disponible. - Vertex AI Studio: pasa
https://cloud.anythingmcp.com/mcpal arraytoolsde tu petición con el mismo header Bearer.
Herramientas disponibles
| 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
¿Gemini 1.5 Pro o 2.x soportan MCP? Sí — Gemini CLI ≥ 0.4 y la API de tools de Vertex AI aceptan conectores MCP httpUrl con header Bearer.
Siguientes pasos
¿Te ha sido útil esta guía?