Mappa del sito Aggiornamenti
Italiano
EUR €
NUOVO
Claude & ChatGPT — Supercharged.
Tutti i documenti · 95+ strumenti AI · Setup in 30 s
Claude· ChatGPT· Cursor· Gemini· +50
Connetti ora
AI-DMS
Oltre 50 moduli e strumenti AI
Soluzioni
Settori, processi, rischi
Risorse
Tutorial, blog, supporto
Developer
API, SDK, documentazione
Integratori
Incorpora, OEM, n8n e programma
Partner
Referenza, Influencer, Canale
Azienda
Team, careers, contact
Prezzi
Model Context Protocol v3.5

PaperOffice MCP Server Claude Desktop |

Paste one URL into Claude, Cursor or ChatGPT — same Bearer token as the REST API. DMS: /dms (151 tools). Claude: /claude (alias). Cursor: /cursor (37 tools, read-safe).

151DMS tools
37Cursor tools
112ChatGPT tools
350Full MCP tools
50ms Latency
Claude Desktop
|
po_aiocr_analyze

Learn more
Video

MCP in Azione

Vedete come funziona PaperOffice MCP nella pratica — nel video.

MCP in Azione

Scelto dalle aziende leader nel mondo

Partner DMS Esclusivo

Unico DMS ufficiale

How MCP works

From natural language to AI action

You ask

Describe what you need — in plain language.

"Extract the invoice"

AI understands

Claude or Cursor selects the right PaperOffice tool.

Result

Structured data back in your AI client — ready to use.

<50ms Latency End-to-end encrypted EU Datacenter ISO 27001 · IN CERTIFICAZIONE ISO 27001 e SOC 2 Type II in certificazione. Audit intermedi disponibili su richiesta con NDA.
Tool Universe

One server. Client URLs + module profiles.

Use /dms, /claude, /cursor or /openai for copy-paste setup — or module paths like /mcp-document-ai and /mcp-workflow-ai.

Gestione documentale

Cerca, leggi, carica, modifica, sposta, copia, elimina

Ricerca intelligente

Testo completo, similarità semantica, ricerca avanzata, statistiche

Firma elettronica

Richieste di firma, modelli, verifica, link mobili, promemoria

Elaborazione AI

AI-OCR, suddivisione documenti, rilevamento PII, anonimizzazione automatica

Intelligenza documentale

Entità, relazioni, riassunti, campi metadati, editore, incorporamenti

Analisi

Trend, dati finanziari, heatmap, attività utente, scadenze, centro audit

Knowledge Graph

casi Business, vista universale, timeline, riferimenti, relazioni

Intelligenza CRM

Approfondimenti sugli account, rilevamento del rischio, opportunità, analisi del sentiment

Intelligenza Business

Dashboard, analisi dei campi, report sui trend, metriche dell'area di lavoro

Webhook ed eventi

Iscriviti, testa, gestisci, abbonamenti ai job, invio eventi

Notes, Tags & Comments

Note, tag, commenti — crea, modifica, risolvi, elimina

Versionamento e audit

Check-out/check-in, cronologia delle versioni, revisioni, tracciamento completo audit

Endpoints

Copy the URL for your AI client

Client shortcuts map to curated profiles. Module paths are available for explicit Document AI / Workflow AI scopes.

Fast
25

/mcp-fast

25 essential tools for strict tool budgets.

https://mcp.paperoffice.ai/mcp-fast
Read-only
37

/mcp

37 core read tools — same scope as /cursor.

https://mcp.paperoffice.ai/mcp
Full
350

/mcp-full

All MCP-enabled tools (350+) for power workflows.

https://mcp.paperoffice.ai/mcp-full

Document AI

Lighter module — /mcp-document-ai (~92 tools); full DMS: /dms

document-ai

Workflow AI

Tasks, HITL, templates — /mcp-workflow-ai

workflow-ai

Relations AI

CRM, partners, leads, helpdesk

relations-ai

Analytics AI

Analytics, BI, Knowledge Graph, RAG

analytics-ai

Media AI

Image Studio, TTS, STT, translation

media-ai

Data AI

Validation, VAT, currency, geodata, security lookups

data-ai
Casi d'Uso

Vedi PaperOffice MCP in 30 secondi

Quattro flussi di lavoro reali con Claude — un breve video ciascuno. Articoli approfonditi collegati qui sotto.

Fatture fine mese

Fatture non pagate in ogni workspace — totali e bandiere per scadute in un unico prompt.

Leggi l'articolo

Cassetta di posta notturna

Acquisisci, classifica e archivia — duplicati e contratti in scadenza segnalati prima del caffè.

Leggi l'articolo

Ricerca mobile dei contratti

Data di firma, condizioni e riferimento alla pagina — dal tuo portafoglio in pochi secondi.

Leggi l'articolo

Dashboard spese

Da 300 fatture a una dashboard pronta per il board con un solo prompt.

Leggi l'articolo
Capability Matrix

Which URL should I use?

Start with the client shortcut. Use module paths or /mcp-full only when you need a different scope.

Task Recommended URL Why
Full headless DMS (canonical)
/dms
151 tools — CRUD, capture, workflow, signatures, schema and admin ops.
Full headless DMS (canonical)
/dms
151 tools — CRUD, capture, workflow, signatures, schema and admin ops.
Claude Desktop / Claude Code (DMS agent)
/claude
Alias of /dms — same 151 tools for Claude clients.
Cursor IDE while coding
/cursor
37 read-safe tools — no accidental document deletes.
ChatGPT / OpenAI MCP
/openai
Document AI + Workflow AI combined (~112 tools).
Search and read only
/cursor or /mcp
Balanced read profile — upload and intelligence included.
Lighter Document AI (no signatures/admin)
/mcp-document-ai
~95 tools — CRUD and capture without full DMS surface.
Workflow tasks, HITL, approvals
/mcp-workflow-ai or /openai
Workflow module or combined OpenAI profile.
Complex multi-step tasks
po_agents_ask in /mcp or /claude
Delegate to backend agent instead of dozens of micro-tools.
Migration / all MCP tools
/mcp-full
Complete MCP surface (350+ tools) for debugging and legacy agents.

Migrating older MCP setups

Legacy /mcp-headless still works — it is an alias of /mcp-document-ai. Use /dms for the full surface.

Use /dms as the canonical headless DMS URL (/claude is an alias) Replace /mcp-headless with /dms or /mcp-document-ai (lighter) Use /cursor instead of /mcp if you only need read-safe IDE access Use /openai when workflow tools are required alongside DMS Keep /mcp-full only for power users and legacy tool names
Prima vs. dopo

Perché MCP cambia le regole del gioco

API Tradizionale~50 righe di codice
const response = await fetch(
  'https://api.paperoffice.ai/v1/ocr',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer pk_...',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      file_url: 'https://...',
      type: 'invoice',
      output: 'json'
    })
  }
);
const data = await response.json();
if (!response.ok) throw new Error(data.error);
console.log(data.result);
VS
Con PaperOffice MCP1 frase

"Estrai tutti i dati della fattura dal PDF allegato e mostrami fornitore, importo e data di scadenza."

Nessun boilerplate Nessuna gestione degli errori Nessun SDK necessario Produttività istantanea
Quick Start

Connect in 10 seconds

Remote MCP server — no install. Paste the URL, add your Bearer token or use OAuth.

1

Generate Bearer token

PaperOffice App → Settings → API → Generate token

2

Paste URL in MCP settings

Choose the URL for your AI client (see tabs below)

Done — start asking

/dms exposes 350+ MCP tools (151 in the DMS profile); Cursor gets 37 read-safe tools.

Claude Desktop / Claude Code
{
  "mcpServers": {
    "paperoffice": {
      "url": "https://mcp.paperoffice.ai/dms",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
Recommended for DMS — OAuth 2.1 or Bearer token. /claude is an alias of /dms.
Generate token
151 tools ready
Cursor IDE
{
  "mcpServers": {
    "paperoffice": {
      "url": "https://mcp.paperoffice.ai/cursor",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
Read-safe default for IDE — Bearer token required.
Generate token
37 tools ready
ChatGPT / OpenAI MCP
{
  "mcpServers": {
    "paperoffice": {
      "url": "https://mcp.paperoffice.ai/openai",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
Document AI + Workflow AI — Bearer token or OAuth.
Generate token
112 tools ready
Additional profiles
{
  "mcpServers": {
    "paperoffice-document-ai": {
      "url": "https://mcp.paperoffice.ai/mcp-document-ai"
    },
    "paperoffice-workflow-ai": {
      "url": "https://mcp.paperoffice.ai/mcp-workflow-ai"
    },
    "paperoffice-full": {
      "url": "https://mcp.paperoffice.ai/mcp-full"
    }
  }
}
Explicit module paths: /dms (151), /mcp-document-ai (95), /mcp-workflow-ai (~56), /mcp-fast (25), /mcp-full (350+ total).
Generate token
modules + full
Punti salienti

Cosa rende speciale il PaperOffice MCP Server

Funzionalità di livello Enterprise per sviluppatori e team.

OAuth 2.1 + Bearer Token

Doppia autenticazione: flusso OAuth automatico per Claude Desktop, Bearer Token diretti per Cursor e Windsurf.

Ricerca ibrida con Embeddings

PaperOffice Embeddings (4096-dim) + Full-text. Tool-Routing in under 50 ms.

Staging e caricamento file

Carica file senza Base64: URL di caricamento pre-firmati, fallback interfaccia browser, download sicuro.

Knowledge Graph

Casi Business, vista universo, timeline e relazioni tra documenti — tutto tramite linguaggio naturale.

Analisi e BI

18 strumenti di analisi + 5 di BI: trend, dati finanziari, mappe di calore, metriche dell'area di lavoro su richiesta.

GDPR e hosting UE

Data center 100% UE, ISO 27001, SOC 2, pronto per HIPAA. Nessun dato lascia l'UE.

151
Headless DMS tools

350+ MCP tools in total — DMS profile /dms with 151 tools; full surface via /mcp-full.

Ready to connect your AI client?

DMS → /dms · Claude → /claude · Cursor → /cursor · ChatGPT → /openai. Same Bearer token as the REST API.

Supported clients: Claude Cursor ChatGPT Windsurf