Connect your favorite AI agents to Mind Cortex using the Model Context Protocol (MCP). This allows AI assistants to search, read, and create items in your knowledge base.
The Model Context Protocol (MCP) is an open standard that allows AI applications to securely connect to external data sources and tools. Mind Cortex implements an MCP server that gives AI agents access to your personal knowledge base.
When connected, AI agents can use the following tools:
Search your knowledge base using semantic or full-text search. Find relevant notes, projects, areas, and resources.
Retrieve the full content of a specific item by ID.
Create a new item in your inbox for later processing.
List all your active projects with their status and progress.
List all your areas of responsibility.
Claude Desktop uses stdio transport, so we need the mcp-remote package to connect to Mind Cortex's remote HTTP server.
npm install -g mcp-remote
# macOS
~/Library/Application Support/Claude/claude_desktop_config.json
# Windows
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mindcortex": {
"command": "npx",
"args": [
"mcp-remote",
"https://app.mindcortex.ai/api/mcp",
"--header",
"Authorization: Bearer your-api-key-here"
]
}
}
}Replace your-api-key-here with your MCP API key from the Settings page.
After saving the config, restart Claude Desktop. You should see Mind Cortex listed in the MCP servers when you start a new conversation.
Cursor IDE supports MCP for enhanced AI assistance. Configure Mind Cortex:
Go to Settings > Features > MCP Servers
Name: Mind Cortex
URL: https://app.mindcortex.ai/api/mcp
API Key: Your MCP API key from settings
Windsurf supports MCP servers for extended capabilities:
# macOS
~/.codeium/windsurf/mcp_config.json
# Windows
%USERPROFILE%\.codeium\windsurf\mcp_config.json
{
"mcpServers": {
"mindcortex": {
"url": "https://app.mindcortex.ai/api/mcp",
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
}The Continue extension for VS Code supports MCP servers:
{
"experimental": {
"modelContextProtocolServers": [
{
"name": "mindcortex",
"transport": {
"type": "sse",
"url": "https://app.mindcortex.ai/api/mcp"
},
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
]
}
}Claude Code CLI supports MCP servers for enhanced context:
claude mcp add mindcortex \ --transport http \ --url https://app.mindcortex.ai/api/mcp \ --header "Authorization: Bearer your-api-key-here"
Replace your-api-key-here with your MCP API key from the Settings page.
Claude Desktop requires stdio transport (using command), not HTTP transport (using url). Make sure you've installed mcp-remote and use the configuration shown in the Claude Desktop section above.
Ensure MCP is enabled in your Mind Cortex settings and that your API key is correct.
Regenerate your API key in Settings and update your AI agent configuration.
Restart your AI agent after adding the MCP configuration. Check that the config file syntax is valid JSON.
If you encounter issues or have questions about MCP integration, please reach out: