Getting Started
Installation
Install and configure ATOMS MCP Server in 2 minutes
Installation
Install the package
npm install -g @atoms-tech/atoms-mcpOr run directly with npx : no global install needed:
npx @atoms-tech/atoms-mcpAuthenticate
npx @atoms-tech/atoms-mcp loginThis opens your browser for OAuth login. Once approved, credentials are stored securely at ~/.atoms/credentials.json.
Add to your AI assistant
Add to your claude_desktop_config.json:
{
"mcpServers": {
"atoms-mcp": {
"command": "npx",
"args": ["@atoms-tech/atoms-mcp"]
}
}
}Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
claude mcp add atoms-mcp -- npx @atoms-tech/atoms-mcpThat's it. The server is now available in your Claude Code sessions.
Open Cursor Settings, navigate to MCP Servers, and add:
- Name:
atoms-mcp - Command:
npx - Args:
@atoms-tech/atoms-mcp
For CI/CD and headless environments, see Authentication for token-based auth.