Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi DocuWare 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
DocuWare document management: search file cabinets by field, read document metadata and index fields, list cabinets, dialogs and trays. Platform REST API, cookie-session auth against DocuWare Cloud or an on-premises server.
Prova a chiedere
Prompt di esempio per DocuWare
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 → DocuWare, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
DocuWare + Gemini
DocuWare document management: search file cabinets by field, read document metadata and index fields, list cabinets, dialogs and trays. Platform REST API, cookie-session auth against DocuWare Cloud or an on-premises server.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
DOCUWARE_URL, DOCUWARE_USERNAME, DOCUWARE_PASSWORD
Step 1 — Ottieni le credenziali
Getting access
- Create a DocuWare user for the integration with read rights on the file cabinets the agent should see. DocuWare enforces cabinet and field-level rights, so a restricted user sees fewer documents rather than an error.
- Set
DOCUWARE_URLto your platform root — for DocuWare Cloud that ishttps://<tenant>.docuware.cloud/DocuWare/Platform; on premises it ishttps://<server>/DocuWare/Platform. No trailing slash. - Set
DOCUWARE_USERNAMEandDOCUWARE_PASSWORD. The adapter posts them to/Account/Logonand reuses the returned.DWPLATFORMAUTHcookie, refreshing it when DocuWare expires it. …
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 —DocuWaredovrebbe 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 |
|---|---|
docuware_list_file_cabinets | List the file cabinets and document trays the logged-in user can reach, with their GUID, name and whether each is a basket |
docuware_get_file_cabinet | Read one file cabinet's definition: its index fields, their types and lengths, and the dialogs configured on it |
docuware_search_documents | Search one file cabinet by index field, e |
docuware_get_document | Read one document's header: its id, store date, content type, page count and the section list |
docuware_get_document_fields | Read the index fields of one document with their values — the invoice number, supplier, amount and date DocuWare has captured for it |
docuware_list_dialogs | List the search, store and result dialogs configured on a file cabinet |
docuware_get_organization | Read the DocuWare organization the user belongs to: its name, GUID and the services available on this platform |
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?