Use SyncRange as an MCP server with Gemini so you can ask about your connected data in conversation. SyncRange tools are read-only.
| Product | How SyncRange connects |
|---|---|
| Gemini Enterprise (Google Cloud) | Admin adds SyncRange as a Custom MCP Server data store, attaches it to an app, then users authorize in the Gemini Enterprise chat UI |
| Gemini CLI | Configure SyncRange in settings.json (or gemini mcp add) with a SyncRange bearer token — practical for personal / developer use |
| Consumer gemini.google.com | Custom remote MCP connectors are not generally available in the consumer Gemini web app today |
https://mcp.syncrange.com/mcp
Gemini Enterprise requires Streamable HTTP (this URL). Do not use an SSE-only endpoint.
This is the path for chatting with SyncRange tools inside a Gemini Enterprise app. An admin with permission to create data stores (e.g. Discovery Engine Editor) configures the connector once; each user then authorizes in the chat UI.
https://mcp.syncrange.com/mcp.| Field | Value |
|---|---|
| MCP Server URL | https://mcp.syncrange.com/mcp |
| Authorization URL | https://syncrange.com/o/authorize/ |
| Token URL | https://syncrange.com/o/token/ |
| OAuth client ID / secret | A SyncRange OAuth application registered for your organization (see note below) |
| Scopes | The SyncRange source scopes you need (e.g. shopify, meta) — same vocabulary as other MCP clients |
ChatGPT and Claude register themselves automatically (dynamic client registration). Gemini Enterprise expects you to paste a fixed Client ID and Secret. Contact SyncRange support (or your SyncRange admin) to provision an OAuth application for your Gemini Enterprise connector before completing this form.
If you use Gemini from the terminal, connect SyncRange with a manual bearer token (same pattern as Cursor).
Follow Create a manual token and choose Gemini as the client label. Copy the <prefix>.<secret> value once.
gemini mcp add --transport http \
--header "Authorization: Bearer <prefix>.<secret>" \
syncrange https://mcp.syncrange.com/mcp
Add (or merge) this under mcpServers in your user or project Gemini settings:
{
"mcpServers": {
"syncrange": {
"httpUrl": "https://mcp.syncrange.com/mcp",
"headers": {
"Authorization": "Bearer <prefix>.<secret>"
}
}
}
}
Use httpUrl for SyncRange’s Streamable HTTP endpoint (not the SSE-style url field).
Start Gemini CLI and ask about your connected sources. Confirm SyncRange tools are listed/available in the session if your CLI version shows MCP status.
Full token safety notes and generic JSON examples: CLI & local clients.
That’s expected today. Use Gemini Enterprise (org) or Gemini CLI (personal), or connect ChatGPT / Claude instead.
syncrange.com (main site), while the MCP URL is mcp.syncrange.com.Confirm the full Bearer <prefix>.<secret> header, token scopes, and that the underlying SyncRange source account is still connected.