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.
💡 Keine Installation? Nutze cloud.anythingmcp.com direkt. Einloggen, Connectors → Nimble klicken, Zugangsdaten einfügen, MCP-API-Key erzeugen — fertig. Kein Docker, kein
git clone, kein lokaler Server.
Nimble
Manage Nimble CRM (contacts, activities, deals, tasks, notes) from any AI agent. 9 tools, OAuth2 auth.
Einrichtung
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)
Voraussetzungen: NIMBLE_CLIENT_ID, NIMBLE_CLIENT_SECRET, NIMBLE_REFRESH_TOKEN
Connector lokal installieren
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Öffne http://localhost:3000/connectors/store, wähle Nimble und trage die unter Voraussetzungen aufgelisteten Variablen ein.
Verfügbare Tools
| 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 |