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.
💡 Без установки? Используйте cloud.anythingmcp.com напрямую. Войдите, нажмите Connectors → Nimble, вставьте учётные данные, создайте MCP API key — готово. Без Docker, без
git clone, без локального сервера.
Nimble
Manage Nimble CRM (contacts, activities, deals, tasks, notes) from any AI agent. 9 tools, OAuth2 auth.
Настройка
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)
Предварительные требования: NIMBLE_CLIENT_ID, NIMBLE_CLIENT_SECRET, NIMBLE_REFRESH_TOKEN
Локальная установка коннектора
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Откройте http://localhost:3000/connectors/store, выберите Nimble и введите переменные, перечисленные в Предварительных требованиях.
Доступные инструменты
| 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 |