Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ Before getting started, you'll need:

## 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.:

### Claude Desktop
Expand All @@ -44,6 +49,25 @@ Then configure your MCP client. We've tested this with Claude Desktop, and Curso
}
```

### Claude Code

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

```bash
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"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

stdio isn't a typo right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

naa thats expected.


### Cursor

Expand Down