What is the Maindex Expert Memory Service MCP server?
Full-control memory API for AI agents — memories, collections, links, search, and bulk operations.
How to install Maindex Expert Memory Service
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Environment / auth
X-API-KeyrequiredsecretMaindex API key. Create one at https://maindex.io/dashboard/settings
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"expert": {
"url": "https://expert.maindex.io/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"expert": {
"serverUrl": "https://expert.maindex.io/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"expert": {
"type": "http",
"url": "https://expert.maindex.io/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"expert": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://expert.maindex.io/mcp"
]
}
}
}Claude Code
claude mcp add --transport http expert https://expert.maindex.io/mcpRelated MCP servers
Simple memory for AI: keep, recall, update, and forget information across sessions.
View repository →