1. Conduid
  2. Developer Tools
  3. Clix MCP Server
MCP server · Developer Tools

Clix MCP Server

Clix MCP Server enables AI agents to provide real-time, trusted Clix documentation and SDK code examples for seamless integrations.

59Fair

Scored 3 months ago · breakdown

About Clix MCP Server

Clix MCP Server is an MCP server published by clix-so in the Developer Tools category: clix MCP Server enables AI agents to provide real-time, trusted Clix documentation and SDK code examples for seamless integrations. It has been installed 0 times through Conduid.

The repository has 2 stars and 2 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx clix-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Clix MCP Server

Powered by Claude · Grounded in docs

I know everything about Clix MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Clix MCP Server

npm version npm downloads License

Clix MCP Server enables AI agents to deliver real‑time, trustworthy Clix documentation and SDK code examples for seamless integrations right inside any MCP‑compatible client.

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 Clix docs (user guides, API reference, troubleshooting, best practices) with semantic ranking.
  • SDK Search — Explore Clix SDKs (iOS, Android, Flutter, React Native) and implementation examples. Discover SDK symbols and retrieve production‑ready snippets.

Installation

Prerequisites

  • Node.js >= 18

Quick Start

Install Clix MCP Server:

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

Create or update the .mcp.json at your project root (or the configuration location your MCP client uses). Using npx ensures you always run the latest published version:

Shared MCP configuration

Add Clix with:

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

Place this in your client’s MCP config (e.g., VS Code extension settings, ~/.cursor/mcp.json, or your Copilot client’s MCP settings).

Claude Code Configuration

Open your terminal to access the Claude Code CLI. Run the following command to register the Clix MCP Server.

claude mcp add --transport stdio clix-mcp-server -- npx -y @clix-so/clix-mcp-server@latest

Codex Configuration

Open ~/.codex/config.toml. Add the following configuration and restart the Codex CLI:

[mcp_servers]
  [mcp_servers.clix]
  command = "npx"
  args = ["-y", "@clix-so/clix-mcp-server@latest"]

Restart your MCP client to load the configuration.

Command-Line Options

clix-mcp-server [options]

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

Usage

This package runs as an MCP server. Once configured in your MCP client, you can invoke search_docs and search_sdk directly from the client’s tool palette or assistant UI.

Notes:

  • Network access is required to fetch documentation pages and SDK source files.
  • Default timeouts and result counts can be tuned via environment variables:
    • DOCS_SEARCH_MAX_RESULTS (default: 3)
    • SDK_SEARCH_MAX_RESULTS (default: 3)

Local 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.

Contributing

Contributions are welcome! Please read our guidelines in CONTRIBUTING.md and open an issue to discuss significant changes before submitting a PR.

Support

If you encounter issues or have feature requests, please open an issue on GitHub. For usage questions, check the docs and examples returned by the tools.

License

MIT License with Custom Restrictions - see LICENSE for details.

Resources

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Clix MCP Server

How do I install Clix MCP Server?

Run npx clix-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Clix MCP Server safe to use with an AI agent?

Its trust score is 59 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Clix MCP Server still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.