MCP Hub
Back to servers

usecortex-mcp

Persistent memory for AI coding agents. Store coding standards, architecture decisions, and project context across sessions with AES-256 encryption.

glama
Forks
1
Updated
Mar 10, 2026

UseCortex

UseCortex MCP Server

Give your AI coding agent a persistent memory — read and write knowledge from any tool.

Website · Quick Start · Tools · Pricing

UseCortex demo — store knowledge, query from any AI agent


UseCortex MCP is a Model Context Protocol server that gives AI coding agents persistent memory. Your agent can read knowledge you've stored and write new discoveries back — all through a single encrypted endpoint.

No context window limits. No copy-pasting. No outdated docs. Your AI remembers everything.

How It Works

  1. You chat — describe your coding standards, architecture decisions, client requirements, anything
  2. UseCortex extracts — AI automatically organizes facts into structured topics
  3. Your agent recalls — any MCP-compatible tool can query your knowledge instantly
  4. Knowledge grows — your agent can push new discoveries back, so your knowledge base stays current

Features

  • Two-way knowledge flow — read context into projects, write discoveries back
  • Works with any MCP client — compatible with any AI coding agent that supports the Model Context Protocol
  • Encrypted at rest — AES-256 encryption with per-user keys
  • No vendor lock-in — your knowledge works across every AI tool
  • Structured by topic — knowledge auto-organized, not dumped in one pile

Quick Start

Prerequisites

  • A free UseCortex account
  • An MCP-compatible AI coding agent

1. Generate an API key

Sign up at usecortex.net, then navigate to Settings → API Keys → Generate.

Note: Copy the key immediately after generation. It will not be shown again.

2. Install (one command)

Run this in your terminal — replace YOUR_API_KEY with the key from step 1:

claude mcp add usecortex --transport url https://api.usecortex.net/mcp --header "Authorization: Bearer YOUR_API_KEY"

That's it. Restart your AI coding agent and UseCortex tools are ready.

Manual setup (alternative)

If you prefer to configure manually, add this to your MCP client config file:

{
  "mcpServers": {
    "usecortex": {
      "type": "url",
      "url": "https://api.usecortex.net/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with the key generated in step 1.

Available Tools

query_knowledge

Ask a natural language question and get an AI-powered answer based on your stored knowledge.

ParameterTypeRequiredDescription
querystringYesNatural language question
topicstringNoFilter by specific topic

list_topics

List all knowledge topics. Takes no parameters.

add_knowledge

Write new knowledge to your base. Your agent can store discoveries, decisions, or patterns it finds.

ParameterTypeRequiredDescription
contentstringYesThe knowledge to store
topicstringNoTopic to file under (auto-detected if omitted)

get_topic

Retrieve all knowledge entries for a specific topic.

ParameterTypeRequiredDescription
topicstringYesTopic name to retrieve

search_knowledge

Search knowledge entries by keyword (text match).

ParameterTypeRequiredDescription
querystringYesSearch term

capture_session (Memory plan)

Capture an AI session summary into persistent memory. Store what you learned, decided, or built.

ParameterTypeRequiredDescription
summarystringYesCompressed summary of the session
toolstringNoAI tool used (claude-code, cursor, chatgpt)
projectstringNoProject name or path
tagsstring[]NoTags for categorization
observationsstringNoDetailed observations as JSON string

recall_memory (Memory plan)

Search across all captured session memories using AI. Ask what you worked on or what decisions were made.

ParameterTypeRequiredDescription
querystringYesNatural language question about past sessions
toolstringNoFilter by AI tool
projectstringNoFilter by project
limitnumberNoMax results (default 20)

list_sessions (Memory plan)

List recent captured session memories.

ParameterTypeRequiredDescription
toolstringNoFilter by AI tool
projectstringNoFilter by project
limitnumberNoMax results (default 10)

Use Cases

WhoWhat
DevelopersYour coding standards, architecture decisions, and project context — automatically available to your AI agent
Support teamsFeed real policies and procedures to any support bot — it answers with facts, not guesses
Sales teamsStore client history, pricing, and objections — pull everything before meetings
IndividualsYour personal brain backup — everything you know, encrypted and accessible from any AI tool
HR & OnboardingYour company playbook — processes, tools, culture — available to new hires instantly

Pricing

FreePro ($9/mo)Memory ($19/mo)Team ($39/mo)
Knowledge entries100UnlimitedUnlimitedUnlimited
Topics3UnlimitedUnlimitedUnlimited
API calls/month50010,00050,000200,000
Two-way APIRead onlyYesYesYes
AI session captureYesYes
Memory recallYesYes
Markdown syncYesYes
Session history90 daysUnlimited
API keys151050
Team members25
Audit logsYes

Manage your plan at usecortex.net.

Security

  • All communication encrypted over HTTPS
  • Knowledge encrypted at rest with AES-256
  • Per-user encryption keys — even we can't read your data
  • API keys scoped per user with instant revocation

Contributing

Found a bug or have a feature request? Open an issue.

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review