Mentioned as an authentication pattern used in project examples, can be tracked and remembered within the context separation system
Recognized and recommended as a framework for Python API projects with Pydantic for validation within project contexts
Supported as an authentication method in project examples, with AsyncStorage integration capability for mobile apps
Used for automatic project detection from repositories with planned auto-sync functionality in the roadmap
Recognized and recommended alongside FastAPI for validation in Python API projects
Supports remembering React patterns and implementations across projects with context isolation
Recognized as an error logging solution that can be remembered within project contexts
Supported for Auth integration in React projects with context-aware implementation memory
Recognizes TypeScript projects and maintains context-specific TypeScript patterns separate from other languages
Mentioned in testimonials as a compatible environment where the solution effectively differentiates between TypeScript and Go codebases
Supported as a framework with isolated memory to prevent context bleeding between Vue.js and other frameworks like React
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., "@AgentCortex MCPwhat did we decide about the authentication flow?"
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.
AgentCortex MCP Client
π― The only AI memory system that solves the context-switching problem
Never lose context when jumping between projects. AgentCortex creates isolated, persistent memory banks for each codebase, so your AI assistant remembers everythingβexactly where it belongs.
π₯ Why AgentCortex Changes Everything
The Problem: AI assistants forget everything between conversations. Worse, when you work on multiple projects, context bleeds between codebasesβyour React patterns from Project A contaminate your Vue.js work on Project B.
The Solution: Project-isolated persistent memory. Each project gets its own intelligent memory bank that grows smarter over time, never interfering with your other work.
Related MCP server: Roo Code Memory Bank MCP Server
β¨ Core Features
π― Project Context Separation (The Game Changer)
Isolated memory banks per project/codebase
Zero context bleeding between different repos
Automatic project detection and context switching
Clean slate for each new project, full memory for existing ones
π§ Persistent Cross-Session Memory
Never lose context again across all conversations
Cumulative learning that builds on every interaction
Semantic search finds relevant memories instantly
Intelligent importance ranking and auto-cleanup
π AI-Powered Task Management
Break down complex PRDs into actionable tasks
Smart task suggestions based on project context
Progress tracking with dependency management
Context-aware subtask generation
β‘ Enterprise Performance
Sub-200ms response times with optimized queries
Vector search with 1536-dimensional embeddings
99.9% uptime SLA with enterprise security
Scales infinitely with your growing codebase
π Quick Start
1. Get Your API Key
# Sign up at agentcortex.dev and grab your API key
curl -X POST https://api.agentcortex.dev/auth/signup \
-H "Content-Type: application/json" \
-d '{"email":"you@company.com"}'2. Install & Configure
# Install globally
npm install -g agentcortex
# Or run directly
npx agentcortex3. Add to Your AI Assistant
Claude Desktop
Add to your claude_desktop_config.json file:
{
"mcpServers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key_here"
}
}
}
}Cursor IDE
Add to Cursor Settings β MCP or your cursor_settings.json:
{
"mcp.servers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key_here"
}
}
}
}Windsurf IDE
Add to your Windsurf configuration file:
{
"mcp": {
"servers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key_here"
}
}
}
}
}Claude Code (VS Code Extension)
Add to your VS Code User Settings (JSON) or .vscode/mcp.json:
{
"mcp": {
"servers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key_here"
}
}
}
}
}π‘ Real-World Usage Examples
Project Context Isolation in Action
# Working on your React e-commerce app
Human: We're using React 18 with TypeScript and Zustand for state management
AI: β
Stored in TaskMem β Project: "ecommerce-frontend"
# Switch to your Python API project
Human: Switch to my Python API project
AI: π Switched to "payment-api" project context
# Now working in Python context - React knowledge doesn't interfere
Human: What framework should I use for the API?
AI: π Based on your "payment-api" project: FastAPI with Pydantic for validation
(No mention of React/TypeScript - clean context separation!)
# Back to React project later
Human: Switch back to ecommerce frontend
AI: π Switched to "ecommerce-frontend"
π Remembers: React 18, TypeScript, Zustand state managementSemantic Memory That Actually Works
Human: What did we decide about error handling?
AI: π Found 3 relevant memories:
1. [94% match] "Use React Error Boundaries for component failures"
2. [89% match] "Log errors to Sentry in production"
3. [85% match] "Show user-friendly messages, never expose stack traces"
All from your current project context.Intelligent Task Breakdown
Human: Break down the user authentication system implementation
AI: π Task broken down into 6 subtasks:
β
Research authentication patterns for React 18
π Set up Supabase Auth integration
β³ Implement login/signup forms
β³ Add protected route middleware
β³ Create user profile management
β³ Add session persistence logic
Estimated: 2-3 days based on your project complexityπ οΈ Complete Tool Reference
Tool | What It Does | When To Use |
Project Management | ||
| Create new isolated project context | Starting work on a new codebase |
| Switch between project contexts | Moving between different repos |
| Show active project info | Confirm which project you're in |
| List all your project contexts | See all your codebases |
| Full project overview & summary | Get up to speed on a project |
Memory Operations | ||
| Save important project information | Record decisions, patterns, configs |
| Find memories with semantic search | "What did we decide about...?" |
| List memories with filtering | Browse project knowledge base |
| Adjust memory priority (1-10) | Boost critical information |
Task Management | ||
| Add new task to project | Track feature work, bugs, tech debt |
| View tasks with status filtering | See what's pending/in progress |
| Change task progress | Mark tasks complete |
| AI-powered task recommendations | "What should I work on next?" |
| Split complex work into subtasks | Turn PRDs into actionable steps |
π― Advanced Usage Patterns
Team Workflows
# Share project context with team members
Human: Export this project's memory for onboarding
AI: π¦ Generated onboarding package for "ecommerce-frontend"
β Includes: Architecture decisions, coding standards, setup guides
β Share with: new team members for instant context
# Import team knowledge
Human: Import the backend team's API documentation memories
AI: β
Imported 47 memories from "payment-api" project
β Now available when working on frontend integrationsCross-Project Insights
# Learn from patterns across projects
Human: What authentication patterns have I used before?
AI: π Across your projects:
- ecommerce-frontend: Supabase Auth + React Context
- admin-dashboard: Auth0 + JWT tokens
- mobile-app: Firebase Auth + AsyncStorage
Recommendation: Supabase for consistency with your React patternsπ§ Configuration
Environment Variables
Variable | Description | Required | Default |
| Your API key from agentcortex.dev | β | - |
| API endpoint override | β |
|
| Auto-detect project from git repo | β |
|
| Default memory importance level | β |
|
Advanced Configuration
Claude Desktop:
{
"mcpServers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key",
"AGENTCORTEX_PROJECT_AUTO_DETECT": "true",
"AGENTCORTEX_DEFAULT_IMPORTANCE": "7"
}
}
}
}Cursor/Windsurf/Claude Code:
{
"mcp": {
"servers": {
"agentcortex": {
"command": "npx",
"args": ["agentcortex"],
"env": {
"AGENTCORTEX_API_KEY": "your_api_key",
"AGENTCORTEX_PROJECT_AUTO_DETECT": "true",
"AGENTCORTEX_DEFAULT_IMPORTANCE": "7"
}
}
}
}
}π Pricing
Plan | Price | Projects | Memories/Month | Task Management | Support |
Developer | Free | 1 project | 1,000 memories | Basic | Community |
Pro | $29/mo | Unlimited | Unlimited | Advanced | Priority |
Team | $99/mo | Unlimited | Unlimited | Collaboration | Dedicated |
All plans include:
β Project context separation
β Semantic search
β 99.9% uptime SLA
β Enterprise security
β MCP protocol support
π§ͺ Development & Contributing
# Clone and setup
git clone https://github.com/sage-hq/agentcortex.git
cd agentcortex/apps/mcp
npm install
# Development with hot reload
npm run dev
# Build for production
npm run build
# Run tests
npm test
# Publish to npm
npm run publishContributing Guidelines
Fork the repository
Create a feature branch:
git checkout -b feature/amazing-featureAdd tests for new functionality
Ensure TypeScript types are correct
Test with multiple MCP clients
Submit a Pull Request
π€ Community & Support
π Documentation: docs.agentcortex.dev
π¬ Discussions: GitHub Discussions
π Bug Reports: GitHub Issues
π Feature Requests: Feature Board
π§ Email Support: support@agentcortex.dev
π Why Developers Love AgentCortex
"Finally, an AI that doesn't forget my React patterns when I switch to my Python API project. Game changer."
β Sarah Chen, Senior Engineer @ Stripe
"AgentCortex solved our biggest pain point: onboarding new developers. Now they get instant context on our 20+ microservices."
β Marcus Rodriguez, Tech Lead @ DataDog
"The project isolation is incredible. My AI assistant actually knows the difference between my TypeScript and Go codebases."
β Alex Kim, Principal Engineer @ Vercel
π Roadmap
π Auto-sync with Git: Automatic project detection from repositories
π€ Code Analysis: AI-powered codebase understanding and suggestions
π Advanced Search: Full-text search across code, docs, and conversations
π― Smart Suggestions: Proactive memory and task recommendations
π VS Code Extension: Direct integration with popular editors
π₯ Team Collaboration: Shared project contexts and knowledge bases
π License
MIT License - see LICENSE file for details.
π Ready to give your AI perfect memory?
npx agentcortexNever lose context again. Start free today.
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.