Clix MCP Server

Clix MCP Server for assisting Clix SDK/API integrations with semantic search across Clix docs and SDK source (iOS, Android, Flutter, React Native).

Clix MCP Server

Clix MCP Server implements the Model Context Protocol (MCP), an open-source standard that allows large language models to interact with external tools and data sources.

It provides two developer‑focused tools that keep you in flow while integrating Clix:

  • Documentation Search — Search across Clix documentation: user guides, API reference, troubleshooting, and best practices.
  • SDK Search — Search across Clix SDKs (iOS, Android, Flutter, React Native) and integration examples. Discover SDK symbols (types, methods, parameters) and retrieve production‑ready snippets.

Installation

Prerequisites

  • Node.js >= 18

Quick Start

Add to your MCP client configuration:

{
  "mcpServers": {
    "clix": {
      "command": "npx",
      "args": ["-y", "@clix-so/clix-mcp-server@latest"]
    }
  }
}

Restart your MCP client to load the configuration.

Available Tools

ToolCommandDescription
Docs Searchsearch_docsSemantic search across official Clix documentation
SDK Searchsearch_sdkSearch SDK source code and implementation examples

Command-Line Options

clix-mcp-server [options]

--version, -v  Show version
--help, -h     Show help

Development

Local Setup

# Clone and install
git clone https://github.com/clix-so/clix-mcp-server.git
cd clix-mcp-server
npm install

# Build
npm run build

# Run tests
npm test

# Development mode (watch for changes)
npm run dev

MCP Client Configuration for Local Development

Before the package is published, configure your MCP client to use the local build:

{
  "mcpServers": {
    "clix": {
      "command": "node",
      "args": ["/absolute/path/to/clix-mcp-server/dist/index.js"]
    }
  }
}

Replace /absolute/path/to/clix-mcp-server with your actual project path.

License

MIT License with Custom Restrictions - see LICENSE for details.

Resources

Related Servers