ATOMSATOMSDocs
Integration Guides

Claude Code

Set up ATOMS MCP Server in Claude Code CLI

Claude Code Integration

Claude Code (Anthropic's CLI) supports MCP servers with a single command.

Install and authenticate

npm install -g @atoms-tech/atoms-mcp
npx @atoms-tech/atoms-mcp login

Register the MCP server

claude mcp add atoms-mcp -- npx @atoms-tech/atoms-mcp

This registers the server globally for all Claude Code sessions.

Verify

Start a new Claude Code session and ask:

"List my ATOMS projects"

You should see your projects returned by atoms_list_projects.

Usage examples

> "Search for requirements about authentication in project X"
> "Create a new requirement: User shall be able to reset password"
> "Show me the dependency tree for REQ-001"
> "What's the test coverage for the Safety domain?"
> "Generate a Mermaid diagram of the requirement hierarchy"

Managing the server

# List registered MCP servers
claude mcp list

# Remove the ATOMS server
claude mcp remove atoms-mcp

On this page