Connect Gemini
Gemini CLI connects to the Customerscore.io MCP server with an API token. Generate one first in the Customerscore.io application under Settings → API (opens in a new tab) and treat it like a password — it grants full access to your account's customer data.
Add the server from the command line:
gemini mcp add --transport http customerscore https://mcp.customerscore.io \
--header "Authorization: Bearer your-generated-key"Or add it directly to ~/.gemini/settings.json (or .gemini/settings.json in a project) — note that Gemini CLI uses httpUrl for streamable HTTP servers:
{
"mcpServers": {
"customerscore": {
"httpUrl": "https://mcp.customerscore.io",
"headers": {
"Authorization": "Bearer your-generated-key"
}
}
}
}Restart Gemini CLI after saving. The Customerscore.io tools appear in the tool list once the connection succeeds.
See the MCP Server overview for the full tool catalog and example prompts.