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.
TL;DR
Manage Nimble CRM (contacts, activities, deals, tasks, notes) from any AI agent. 9 tools, OAuth2 auth.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Nimble, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Nimble + Gemini
Manage Nimble CRM (contacts, activities, deals, tasks, notes) from any AI agent. 9 tools, OAuth2 auth.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
NIMBLE_CLIENT_ID, NIMBLE_CLIENT_SECRET, NIMBLE_REFRESH_TOKEN
Step 1 — Get credentials
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)
Step 2 — Install the adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Step 3 — Add the connector in Gemini
Gemini CLI reads MCP servers from ~/.gemini/settings.json (or %APPDATA%\gemini\settings.json on Windows). Add:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → Profile → MCP API Keys → New Key.
- Save the file and restart
gemini. - Run
/mcpinside the Gemini CLI —Nimbleshould be listed as available. - Vertex AI Studio: pass
https://cloud.anythingmcp.com/mcpto thetoolsarray of your request with the same Bearer header.
Available 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 |
FAQ
Does Gemini 1.5 Pro or 2.x support MCP? Yes — Gemini CLI ≥ 0.4 and Vertex AI tools API both accept MCP httpUrl connectors with Bearer headers.
Next steps
Was this guide helpful?