Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi Nextcloud con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.
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.
Prova a chiedere
Prompt di esempio per Nextcloud
Clicca su un prompt per copiarlo. Incollalo in Claude, ChatGPT, Cursor, Gemini, Copilot o OpenClaw per eseguirlo contro questo connettore.
Claude è un'AI e può sbagliare. Verifica sempre le risposte.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Nextcloud, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
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.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
NEXTCLOUD_URL, NEXTCLOUD_USERNAME, NEXTCLOUD_APP_PASSWORD
Step 1 — Ottieni le credenziali
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)
Step 2 — Installa l'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
Step 3 — Aggiungi il connettore in Gemini
Gemini CLI legge i server MCP da ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json su Windows). Aggiungi:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia
gemini. - Esegui
/mcpnella Gemini CLI —Nextclouddovrebbe essere elencato come disponibile. - Vertex AI Studio: passa
https://cloud.anythingmcp.com/mcpnell'arraytoolsdella richiesta con lo stesso header Bearer.
Tool disponibili
| 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 supportano MCP? Sì — Gemini CLI ≥ 0.4 e la Vertex AI tools API accettano connettori MCP httpUrl con header Bearer.
Prossimi passi
Questa guida ti è stata utile?