Connect / Google Gemini
Connect OntoRamp to Google Gemini
Add OntoRamp to Gemini CLI today, with notes for Gemini Enterprise.
Gemini CLI works with OntoRamp API keys today. The Gemini Enterprise connector UI requires OAuth 2.0 (Preview).
Before you start
You need an OntoRamp API key — get one free at ontoramp.com/mcp. Your key is shown on screen the moment you request it (and emailed to you), and is passed as a Bearer token in the Authorization header: Authorization: Bearer YOUR_API_KEY. If your tool asks for an API key directly, paste just the key — the header is added for you.
Server URLs
https://ontoramp-graph-query.fly.dev/mcpMCP Registry: com.ontoramp/graph-query
https://ontoramp-decision-intelligence.fly.dev/mcpMCP Registry: com.ontoramp/decision-intelligence
https://ontoramp-transformation-radar.fly.dev/mcpMCP Registry: com.ontoramp/transformation-radar
https://ontoramp-knowledge-cartographer.fly.dev/mcpMCP Registry: com.ontoramp/knowledge-cartographer
https://mcp.ontoramp.com/mcpSetup
Each server in the table above is its own connection — repeat the setup (or add another config entry) for each one you want.
- 1.Open ~/.gemini/settings.json (user scope) or <project>/.gemini/settings.json (project scope).
- 2.Add the OntoRamp server to the mcpServers object using the snippet below — httpUrl selects the streamable HTTP transport.
- 3.Replace YOUR_API_KEY and save. You can also configure it from the command line with gemini mcp add.
~/.GEMINI/SETTINGS.JSON
{
"mcpServers": {
"ontoramp-graph-query": {
"httpUrl": "https://ontoramp-graph-query.fly.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Gemini Enterprise (Standard, Plus, and Frontline editions) can register custom MCP servers as data-store connectors (Preview), but that UI authenticates with OAuth 2.0 only and does not accept static API keys today.
Building agents on Google Cloud? ADK agents pass the OntoRamp key as a custom Authorization header, and Agent Registry supports API-key authentication for registered toolsets.
Tools you get
OntoRamp Graph Query
OntoRamp Decision Intelligence
OntoRamp Transformation Radar
OntoRamp Knowledge Cartographer
OntoRamp Platform
Full parameter and response schemas are in the MCP API reference.