Claude Desktop - edit ~/Library/Application Support/Claude/claude_desktop_config.json on Mac, or %APPDATA%\Claude\claude_desktop_config.json on Windows:
{
"mcpServers": {
"sodium": {
"command": "npx",
"args": ["-y", "@sodiumhq/mcp-pm@beta"],
"env": {
"SODIUM_API_KEY": "your-api-key",
"SODIUM_TENANT": "your-tenant-code"
}
}
}
}
Claude Code - run this in your terminal:
claude mcp add sodium \
--env SODIUM_API_KEY=your-api-key \
--env SODIUM_TENANT=your-tenant-code \
-- npx -y @sodiumhq/mcp-pm@beta
Cursor and VS Code use the same JSON shape. Open your MCP settings in the client and paste:
{
"mcpServers": {
"sodium": {
"command": "npx",
"args": ["-y", "@sodiumhq/mcp-pm@beta"],
"env": {
"SODIUM_API_KEY": "your-api-key",
"SODIUM_TENANT": "your-tenant-code"
}
}
}
}
The server itself is published on npm as @sodiumhq/mcp-pm. Your AI client runs it locally on your machine - nothing extra to install.