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
| Tool | Command | Description |
|---|---|---|
| Docs Search | search_docs | Semantic search across official Clix documentation |
| SDK Search | search_sdk | Search 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
Shell Executor
Execute shell commands safely on a remote server.
Makefile MCP Server
Exposes Makefile targets as callable tools for AI assistants.
WordPress MCP Server
Interact with WordPress sites via the REST API. Manage content, posts, and site configurations for multiple sites using natural language.
Mobile Next
A platform-agnostic server for scalable mobile automation and development across iOS, Android, simulators, and emulators.
GemForge (Gemini Tools)
Integrates Google's Gemini for advanced codebase analysis, web search, and processing of text, PDFs, and images.
Authless Remote MCP Server on Cloudflare
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Hoverfly MCP Server
An MCP server exposing Hoverfly as a programmable API simulation tool for AI assistants.
WebDev MCP
Provides a collection of useful web development tools.
Cloudflare MCP Server Example
A template for deploying a remote MCP server on Cloudflare Workers without authentication.
Polarion MCP Servers
MCP server for integrating with Polarion Application Lifecycle Management (ALM).