Cortex
Enables mining of GitHub pull request discussions and decisions to populate project knowledge.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cortexanalyze my repository's history and generate .claude/docs/ context"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 | bashOr with npx โ no install required:
npx @kovalenko-tech/cortex-ai analyzeRequires Python 3.11+.
Related MCP server: ctx-gen-mcp
Quick start
cd your-project
cortex setup # interactive wizardOr 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 foundCommands
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 CodeClaude 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 analyzeAI summaries
export ANTHROPIC_API_KEY=sk-ant-...
cortex analyzeUses 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kovalenko-tech/cortex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server