To integrate MiniMax with Claude Desktop, edit your claude_desktop_config.json file (found via Claude > Settings > Developer > Edit Config).
Windows Users: You must enable "Developer Mode" in Claude Desktop by clicking "Help" in the top-left hamburger menu and selecting "Enable Developer Mode".
Troubleshooting spawn uvx ENOENT: If you encounter this error, find the absolute path of uvx by running which uvx in your terminal, and use that full path in the command field of your config.
{
"mcpServers": {
"MiniMax": {
"command": "uvx",
"args": [
"minimax-mcp",
"-y"
],
"env": {
"MINIMAX_API_KEY": "insert-your-api-key-here",
"MINIMAX_MCP_BASE_PATH": "local-output-dir-path, such as /User/xxx/Desktop",
"MINIMAX_API_HOST": "api host, https://api.minimax.io | https://api.minimaxi.com",
"MINIMAX_API_RESOURCE_MODE": "optional, [url|local], url is default, audio/image/video are downloaded locally or provided in URL format"
}
}
}
}