Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi EspoCRM 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
EspoCRM open-source CRM: accounts, contacts, leads, opportunities, cases, calls, meetings and tasks, plus a generic entity route for custom entities. API-key auth against your own instance.
Prova a chiedere
Prompt di esempio per EspoCRM
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 → EspoCRM, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
EspoCRM + Claude
EspoCRM open-source CRM: accounts, contacts, leads, opportunities, cases, calls, meetings and tasks, plus a generic entity route for custom entities. API-key auth against your own instance.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
ESPOCRM_URL, ESPOCRM_API_KEY
Step 1 — Ottieni le credenziali
Getting a key
- In EspoCRM go to Administration → API Users and create an API user. Choose API Key authentication (not HMAC — this adapter sends the plain key).
- Assign a role that grants read access to the entities the agent should see. EspoCRM enforces roles per entity and per field, so a restricted role produces fewer rows and fewer columns rather than an error.
- Copy the generated key into
ESPOCRM_API_KEYand setESPOCRM_URLto your instance root (no trailing slash, no/api/v1).
The header is X-Api-Key.
…(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 Claude
Percorso consigliato — funziona su claude.ai web senza toccare alcun file di configurazione.
- Apri claude.ai/customize/connectors.
- Clicca "Add custom connector".
- Compila:
- Name:
EspoCRM - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → incolla la tua MCP API key (da AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Clicca Connect per autorizzare.
Tutti i tool sotto compaiono nella tua chat — inizia a scrivere prompt.
Tool disponibili
| Tool | What it does |
|---|---|
espocrm_get_app_user | Read the API user this key belongs to, with their roles and the entity permissions they carry |
espocrm_list_entities | List records of any entity type with a single where clause |
espocrm_get_entity | Read one record of any entity type by id, with every attribute the API user's role permits |
espocrm_list_accounts | List accounts — the customer companies — with their name, industry, website, phone, billing city and assigned user |
espocrm_list_contacts | List contacts with their name, account, e-mail, phone and title, to find the person before logging an interaction against them |
espocrm_list_opportunities | List opportunities with their name, account, amount, stage, probability and close date — the sales-pipeline view |
espocrm_list_leads | List leads with their name, company, status, source, e-mail and phone — the top of the funnel, before conversion into an account |
espocrm_list_cases | List support cases with their number, subject, status, priority, account and assigned user |
espocrm_get_related | List the records linked to one record — the contacts on an account, the opportunities on a contact, the activities on anything |
FAQ
Funziona con Claude Code come con Claude Desktop? Sì — punta entrambi a https://cloud.anythingmcp.com/mcp.
Prossimi passi
Questa guida ti è stata utile?