// Zero-Touch Installation

Automated CLI Installer.

Configuring MCP JSON files manually is a thing of the past. ContextL ships with a fully automated, cross-platform installation wizard. Just run the install command and it will instantly detect Claude Desktop, Cursor, Antigravity, and VSCode Cline, injecting the configuration automatically.

GLOBAL INSTALL
npm install -g contextl
contextl install

Documentation & Setup

ContextL is built as a standard Model Context Protocol (MCP) server. It runs entirely locally. You can install it via Node.js or Python.

JavaScript
TypeScript
Python
Java
Go
Rust
C
C++

IDE Configuration

Manual ConfigurationAdd this to your IDE's MCP config file to configure the context server manually.
Path: ~/.cursor/mcp.json
{
      "mcpServers": {
        "contextl": {
          "command": "npx",
          "args": ["-y", "contextl"]
        }
      }
    }

Terminal / CLI Subcommands

ContextL is not just an IDE plugin. It installs a global command-line interface on your system so you can access all the intelligence features natively from your terminal. Use it to find where to start coding, or pipe the JSON output into your own custom scripts or CI/CD pipelines.

# 1. Search the codebase
contextl search ./my-repo "fix the auth bug"
# 2. Analyze impact of changing a file
contextl impact ./my-repo src/api.py
# 3. Find standalone (unimported) files
contextl standalone ./my-repo
* Note: Automatically excludes test files (*.test.*) and known entry points (index.*, main.*, app.*, config files) to prevent false positives.
# 4. Generate a 3D Obsidian graph vault
contextl obsidian ./my-repo ./my_vault
# 5. Git-aware impact review
contextl review ./my-repo