msc is a CLI for searching Mintlify documentation through hosted MCP endpoints.
curl -fsSL https://raw.githubusercontent.com/redboarddev/mintlify-search-cli/main/install.sh | bashThe installer builds msc, installs it to /usr/local/bin, asks for your MCP URL, and can install the agent skill for Claude Code, Cursor, or Codex.
The installer is designed to work with curl | bash. For non-interactive usage, set MSC_MCP_URL first:
MSC_MCP_URL="https://docs.example.com/mcp" \
curl -fsSL https://raw.githubusercontent.com/redboarddev/mintlify-search-cli/main/install.sh | bashgit clone https://github.com/redboarddev/mintlify-search-cli.git
cd mintlify-search-cli
make installcurl -fsSL https://raw.githubusercontent.com/redboarddev/mintlify-search-cli/main/uninstall.sh | bashFor non-interactive uninstall:
NONINTERACTIVE=1 REMOVE_SKILLS=1 REMOVE_CONFIG=1 REMOVE_CACHE=1 \
curl -fsSL https://raw.githubusercontent.com/redboarddev/mintlify-search-cli/main/uninstall.sh | bash- Go 1.24+
Resolution order: flags > env vars > config file
Use a full Mintlify MCP endpoint:
https://docs.example.com/mcp
https://docs.example.com/authed/mcpexport MSC_MCP_URL="https://docs.example.com/mcp"msc config set-mcp-url https://docs.example.com/mcp
msc config showConfig path depends on your OS. Use msc config show to print the active file path.
msc search "auth" --mcp-url https://docs.example.com/mcpmsc search "authentication"
msc search "authentication" --json
msc search "authentication" --raw
msc search "authentication" --limit 3
msc open "getting started"
msc doctor- Default output: compact numbered text results
--json: normalized minified JSON for agents--raw: raw MCP JSON-RPC payload
See skill.md for the agent integration template and MCP_ENDPOINT_RESEARCH.md for protocol notes.
MIT. See LICENSE.