ruflo

๐Ÿงช Google AI Studio

/docs/setup--configuration/google-ai-studio

Google AI Studio supports MCP natively since May 2025, with managed MCP servers for Google services (Maps, BigQuery, etc.) launched December 2025.

Using MCP SuperAssistant Extension:

  1. Install MCP SuperAssistant Chrome extension
  2. Configure your ruflo MCP server
  3. Use with Google AI Studio, Gemini, and other AI platforms

Native SDK Integration:

javascript
import { GoogleGenAI } from '@google/genai';

const ai = new GoogleGenAI({ apiKey: 'YOUR_API_KEY' });

// MCP definitions are natively supported in the Gen AI SDK
const mcpConfig = {
  servers: [{
    name: 'ruflo',
    command: 'npx',
    args: ['ruflo@latest', 'mcp', 'start']
  }]
};

Sources: Google AI Studio MCP, Google Cloud MCP Announcement