No install? Use cloud.anythingmcp.com directly.
Sign in, install the Nimble in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Nimble, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Nimble + ChatGPT
Manage Nimble CRM (contacts, activities, deals, tasks, notes) from any AI agent. 9 tools, OAuth2 auth.
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:
NIMBLE_CLIENT_ID, NIMBLE_CLIENT_SECRET, NIMBLE_REFRESH_TOKEN
Paso 1 — Obtener credenciales
This connector wraps the Nimble REST API v1 (app.nimble.com/api/v1).
Setup — OAuth2 refresh flow:
- Sign in to https://app.nimble.com → Settings → Integrations → API → Create OAuth app.
- Note the
client_id,client_secret, and complete the OAuth dance athttps://app.nimble.com/oauth/authorize?response_type=code&client_id=...&redirect_uri=...&scope=...to get an authorization code. - Exchange for tokens:
POST https://app.nimble.com/oauth/token?grant_type=authorization_code&code=...&client_id=...&client_secret=...&redirect_uri=.... - Save the
refresh_token. SetNIMBLE_CLIENT_ID,NIMBLE_CLIENT_SECRET,NIMBLE_REFRESH_TOKEN.
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Paso 3 — Añadir el conector en ChatGPT
ChatGPT soporta servidores MCP a través de la función Connectors (planes Plus / Pro / Team / Enterprise). El plan gratuito no admite conectores personalizados.
- Abre ChatGPT → Settings → Connectors (o pulsa el icono 🔧 en el composer → Manage connectors).
- Pulsa "Add custom connector".
- Rellena:
- Name:
Nimble - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → pega tu MCP API key (de AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Pulsa Connect para autorizar.
Herramientas disponibles
| Tool | What it does |
|---|---|
nimble_myself | Return the authenticated user info |
nimble_list_contacts | List contacts (people + companies) |
nimble_get_contact | Get one contact by ID with all fields, tags, social-network links |
nimble_create_contact | Create a contact |
nimble_update_contact | Update a contact (PATCH semantics — supply only fields you want changed) |
nimble_delete_contact | Permanently delete a contact |
nimble_list_activities | List activities (calls, meetings, tasks, emails) for the workspace |
nimble_create_activity | Create an activity (task, call note, meeting log) |
nimble_list_deals | List sales deals/opportunities |
FAQ
¿Funciona el plan gratuito de ChatGPT con los Connectors MCP personalizados? No — se necesita Plus, Pro, Team o Enterprise.