Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Analyzes a repository's history to generate structured .claude/docs/ context files for Claude Code, enabling informed code generation with historical insights, risk scores, and security notes.

README.md

Cortex

Project knowledge base for Claude Code.

Cortex analyzes your repository and writes .claude/docs/ — structured context files Claude Code reads before touching any file. It knows which parts of the codebase break most often, why certain decisions were made, and where the security risks are.

Not documentation you write. Knowledge extracted from your actual project history.

---

Install

curl -fsSL https://raw.githubusercontent.com/kovalenko-tech/cortex/main/install.sh | bash

Or with npx — no install required:

npx @kovalenko-tech/cortex-ai analyze

Requires Python 3.11+.

---

Quick start

cd your-project
cortex setup    # interactive wizard

Or directly:

cortex analyze
git add .claude/
git commit -m "add cortex context"

---

What Claude Code sees

Before writing a single line of code, Claude Code gets this for every file:

> ⚡ Fresh — analyzed 2026-03-22 UTC
> 🔴 HIGH RISK (score: 65/100) — 12 bug fixes · no test coverage

## Historical Insights
- [Bug Fix] 2024-03-15: Session fails on UTC+0 timezone
  Fix: Always use datetime.timezone.utc

## Decisions & Context
- ✅ Chose JWT over sessions for stateless auth — PR #234 @john
- 🚫 Don't call authenticate() before db.init() — PR #156 @maria

## Edit Checklist
- Run: pytest tests/test_auth.py -v
- Check: SESSION_TIMEOUT in config/settings.py

## Related Files
- tests/test_auth.py [co-change: 92%]
- middleware/session.py [co-change: 67%]

## Security Notes
- ✅ No issues found

---

Commands

cortex setup                      interactive setup wizard
cortex analyze                    analyze full project
cortex analyze --since HEAD~20    only changed files
cortex analyze --no-llm           skip AI summaries
cortex analyze --no-cache         force full re-analysis
cortex init                       generate CLAUDE.md
cortex context src/auth.py        show context for one file
cortex status                     analysis status + freshness + risk
cortex risks                      files sorted by risk score
cortex freshness                  context staleness per file
cortex security                   security audit only
cortex deps                       dependency vulnerability scan
cortex mine-prs                   mine GitHub PR decisions
cortex diff main                  update changed files vs branch
cortex install-hook               auto-update on every commit
cortex watch                      auto-update on new commits
cortex clean                      remove all context files
cortex mcp                        start MCP server for Claude Code

---

Claude Code integration

Add to .claude/settings.json for automatic context injection:

{
  "mcpServers": {
    "cortex": {
      "command": "cortex",
      "args": ["mcp"]
    }
  }
}

---

GitHub PR knowledge

Mine implicit decisions from PR discussions:

export GITHUB_TOKEN=ghp_...
cortex mine-prs
cortex analyze

---

AI summaries

export ANTHROPIC_API_KEY=sk-ant-...
cortex analyze

Uses Claude Haiku to generate a 2–3 sentence technical overview per file. Optional — all other features work without an API key.

---

Docs

Full documentation: https://kovalenko-tech.github.io/cortex/docs.html

---

License

MIT — kovalenko-tech/cortex

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.