crawwwl for Claude Code, Cursor, and Windsurf
Give your AI coding tool direct access to crawwwl. Audit your project, explore findings, and fix issues, all from a conversation.
Works with any MCP-compatible AI tool.
Setup
1. Install crawwwl
npm install -g crawwwlQuick and standard audits are free with no account required.
2. Add the MCP to your project
crawwwl mcp add --scope projectWrites a .mcp.json entry to your project directory. Use --scope user to apply globally across all projects.
2.1 Codex
[mcp_servers.crawwwl]
command = "crawwwl"
args = ["mcp"]
tool_timeout_sec = 420
startup_timeout_sec = 20
env_vars = ["CRAWWWL_API_URL", "CRAWWWL_API_KEY"]For Codex, add this to ~/.codex/config.toml.
Then restart Codex and run /mcp to confirm crawwwl is available.
3. Install the agent skills
npx skills add crawwwl/agent-skillsAdds /crawwwl:audit and /crawwwl:fix slash commands, plus a workflow skill that auto-activates whenever you ask your AI tool to audit or fix your project.
Then restart your AI tool (Claude Code, Cursor, or Windsurf).
For deep audits (optional)
crawwwl loginDeep audits use a full reasoning model See pricing.
Available tools
Once connected, your AI tool has access to four tools:
crawwwl_auditRun a full audit on any project path. Returns scores, all issues, and AI insights.
crawwwl_get_issuesFilter issues from the last report by severity or category, with file paths, line numbers, and fix suggestions.
crawwwl_get_reportLoad the last saved report without re-running a scan.
crawwwl_fix_checkRe-scan and diff against the last report. Shows what was resolved and what is new.
What to say
Your AI tool will pick up the MCP automatically. Just describe what you want:
How it works
- 1
Your AI tool audits your project
Your AI tool calls
crawwwl_auditto scan your source files and get back a structured report: scores, issues, file paths, and line numbers. - 2
Your AI tool explores and confirms
For each finding, your AI tool reads the flagged file at the exact line. It verifies the issue is real before attempting a fix. No blind edits.
- 3
Your AI tool fixes systematically
Issues are fixed one by one, in severity order. Each fix uses the recommendation and fix snippet directly from the crawwwl report.
- 4
Your AI tool verifies with fix-check
After applying fixes, your AI tool calls
crawwwl_fix_checkto re-scan and confirm the issues are resolved.