1. Conduid
  2. Developer Tools
  3. Cortex
MCP server · Developer Tools

Cortex

Portfolio memory for AI agents. Transforms your real project history into structured context that any AI assistant can query in real time.

Unclaimed MIT last commit 7 months ago files
53Fair

Scored 17 days ago · breakdown

About Cortex

Cortex is an MCP server published by cortexapps in the Developer Tools category: portfolio memory for AI agents. Transforms your real project history into structured context that any AI assistant can query in real time. It has been installed 0 times through Conduid.

The repository has 7 stars and 2 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx cortex-mcp
Claude Code
claude mcp add cortex-mcp -- npx -y @j0hanz/cortex-mcp
npx
npx -y @j0hanz/cortex-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Cortex

Powered by Claude · Grounded in docs

I know everything about Cortex. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Cortex MCP Overview

[!NOTE] Research Preview

Not seeing the results you expect? This is an early version of the Cortex MCP. Please send feedback and bug reports to Cortex Customer Engineering.

Cortex MCP is a Model Context Protocol server that provides access to the Cortex API. It uses relevant context from your workspace, ensuring awareness of your system's structure when answering your questions.

You can query information in natural language, powering faster decisions and efficient processes. For example:

  • Who is the right person to handle an incident with backend-server?
  • Show me the services that belong to the platform engineering team
  • We're having an incident with backend-server, give me a summary of information to help handle the incident

Requirements

Before getting started, you'll need:

  • MCP Client: Claude Desktop or other MCP-compatible client
  • Cortex Personal Access Token: Create a token in your Cortex workspace settings.

Installation

[!NOTE] Docker Required

Make sure Docker is installed and running on your system before proceeding with the installation.

Then configure your MCP client. We've tested this with Claude Desktop, and Cursor, but it should work with any MCP-compatible client.

If you are a self-managed Cortex customer, you must also set CORTEX_API_BASE_URL=https:// alongside the CORTEX_API_TOKEN variable. See the docs for an example configuration.

Claude Desktop

{
  "mcpServers": {
    "cortex": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--env",
        "CORTEX_API_TOKEN=YOUR_API_TOKEN_HERE",
        "ghcr.io/cortexapps/cortex-mcp:latest"
      ]
    }
  }
}

Claude Code

Use the following command to add Cortex MCP to Claude Code:

claude mcp add-json "cortex" '{
  "command": "docker",
  "args": [
    "run",
    "--rm",
    "-i",
    "--env",
    "CORTEX_API_TOKEN=YOUR_API_TOKEN_HERE",
    "ghcr.io/cortexapps/cortex-mcp:latest"
  ]
}'

If successful, you should see: "Added stdio MCP server cortex to local config"

Cursor

{
  "mcpServers": {
    "cortex": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "--env",
        "CORTEX_API_TOKEN=YOUR_API_TOKEN_HERE",
        "ghcr.io/cortexapps/cortex-mcp:latest"
      ]
    }
  }
}

VSCode

VS Code MCP Servers Documentation

Sample .vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cortex-key",
      "description": "Cortex API Key",
      "password": true
    }
  ],
  "servers": {
    "Cortex": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/cortexapps/cortex-mcp:latest"
      ],
      "env": {
        "CORTEX_API_TOKEN": "${input:cortex-key}"
      }
    }
  }
}

Warp

Under Settings > AI > Manage MCP Servers, you can configure your JSON config:

{
  "cortex": {
    "command": "docker",
    "args": [
      "run",
      "--rm",
      "-i",
      "--env",
      "CORTEX_API_TOKEN=YOUR_API_TOKEN_HERE",
      "ghcr.io/cortexapps/cortex-mcp:latest"
    ],
    "env": {},
    "start_on_launch": true
  }
}

Support

License

MIT License - see LICENSE file for details.

README mirrored from the source repository 17 days ago. The original is authoritative.

Questions

About Cortex

How do I install Cortex?

Run npx cortex-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Cortex safe to use with an AI agent?

Its trust score is 53 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Cortex still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.