Skip to main content

Clix MCP Server

Clix MCP Server implements the Model Context Protocol (MCP), an open standard for enabling LLMs to interact with external tools and data. Key capabilities:
  • Documentation Search — Search across Clix docs (user guides, API reference, troubleshooting, best practices) with semantic ranking.
  • SDK Search — Search across Clix SDKs (iOS, Android, Flutter, React Native) and implementation examples. Discover SDK symbols and retrieve production‑ready snippets.

Integration Guide

Requirements

  • Node.js 18 or above
  • An MCP-compatible client (e.g., Cursor, Visual Studio Code, Claude Code CLI, Codex CLI)

Install

npm i -g @clix-so/clix-mcp-server@latest

Configure .mcp.json

Create or update the .mcp.json at your project root (or the configuration location your MCP client uses). Recommended configuration using npx:
{
  "mcpServers": {
    "clix-mcp-server": {
      "command": "npx",
      "args": ["-y", "@clix-so/clix-mcp-server@latest"]
    }
  }
}
  • Android Studio
  • Xcode
  • Cursor
  • Google Antigravity
  • VS Code
  • Claude Code CLI
  • Codex CLI
  • Claude Desktop App

Option 1: GitHub Copilot plugin in Android Studio

  1. Add GitHub Copilot plugin to Android Studio by clicking File (Android Studio on MacOS) > Settings > Plugins > GitHub Copilot - Your AI Pair Programmer
  2. Configure the Clix MCP Server by clicking File (Android Studio on MacOS) > Settings > Tools > GitHub Copilot > Model Context Protocol (MCP) > Configure
  3. Add the Clix MCP Server configuration to the mcp.json
{
  "mcpServers": {
    "clix-mcp-server": {
      "command": "npx",
      "args": ["-y", "@clix-so/clix-mcp-server@latest"]
    }
  }
}

Option 2: Using MCP Server plugin from JetBrains with popular MCP Clients

This option allows developers to work in an MCP client while still using Android Studio IDE features via the JetBrains MCP server.
  1. Install the MCP Server plugin from JetBrains by clicking File (Android Studio on MacOS) > Settings > Plugins > MCP Plugin
  2. Add the Clix MCP Server and JetBrains MCP proxy configuration to your MCP client.
{
  "mcpServers": {
    "clix-mcp-server": {
      "command": "npx",
      "args": ["-y", "@clix-so/clix-mcp-server@latest"]
    },
    "jetbrains": {
      "command": "npx",
      "args": ["-y", "@jetbrains/mcp-proxy"]
    }
  }
}
  1. Open the Android Studio and your MCP client at the same time, and use your MCP client to work on your project.

Option 3: Gemini in Android Studio’s Agent

  1. Add an MCP server to Gemini in Android Studio
  2. Add the Clix MCP Server configuration to the mcp.json
{
 "mcpServers": {
   "clix-mcp-server": {
     "command": "npx",
     "args": ["-y", "@clix-so/clix-mcp-server@latest"]
   }
 }
}

Build from Source (Optional)

If you prefer to build from source or need the latest development version:
git clone https://github.com/clix-so/clix-mcp-server
cd clix-mcp-server
npm install
npm run build
Then configure your .mcp.json to point to the built executable:
{
  "mcpServers": {
    "clix": {
      "command": "node",
      "args": ["/path/to/clix-mcp-server/dist/index.js"]
    }
  }
}

Feedback & Contributions

We welcome bug reports, feature requests, and community contributions. If you have any feedback, please open an issue or pull request: