| Reading time: | 10 min |
| Last updated: | 15 Jan 2026 |
| Reading time: |
| 10 min |
| Last updated: |
| 15 Jan 2026 |
This guide shows you how to install and use the tool with the most common configuration. For advanced options and complete reference information, see the official documentation. Some install guides also include optional next steps to help you explore related workflows or integrations.
Claude Code is an AI-powered command-line tool that helps you build features, debug code, and navigate codebases directly from your terminal. It provides autonomous coding assistance and integrates with your existing development workflow.
Claude Code works seamlessly on Arm-based systems, including Linux distributions running on Arm servers, macOS on Apple Silicon, and Windows on Arm devices.
You need a Claude account to use Claude Code. A Claude.ai account is recommended, though you can also use a Claude Console account.
If you don’t have a Claude account, visit Claude.ai and sign up.
Claude Code is only available for paid Pro and Max accounts, if not using API credits. Visit Claude Pricing to review the options.
Claude Code is a terminal application that works on macOS, Linux, and Windows systems, including Arm-based platforms.
The recommended installation method for Linux uses the installation script:
curl -fsSL https://claude.ai/install.sh | bash
This script automatically detects your system architecture and installs the appropriate version for Arm64 systems.
Add Claude Code to your PATH:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
On macOS, you can use the installation script:
curl -fsSL https://claude.ai/install.sh | bash
Or install using Homebrew:
brew install --cask claude-code
On Windows systems, including Windows on Arm, run the following PowerShell command:
irm https://claude.ai/install.ps1 | iex
For other options, please see the Claude Code setup page .
Confirm Claude Code is installed by checking the version:
claude --version
The output shows the installed version:
2.1.7 (Claude Code)
After installing Claude Code, you need to authenticate:
Navigate to a project directory:
cd your-project
Start Claude Code:
claude
Configure your preferences when prompted (dark mode, editor settings, etc.).
On first use, Claude Code prompts you to authenticate:
Accept the acknowledgements to complete setup.
Claude Code automatically saves your authentication credentials for future sessions.
Test Claude Code by asking it to perform a simple task.
Start Claude Code in a project directory:
claude
Type a request, for example:
> Create a Python function to calculate fibonacci numbers for my Arm machine
Claude Code analyzes your request, creates a plan, and generates the code.
Review the proposed changes before accepting them. Claude Code shows you a preview of changes before applying them, giving you control over what gets modified in your codebase.
If Claude Code doesn’t respond:
claude and check for authentication prompts)You’re now ready to use Claude Code.
Model Context Protocol (MCP) Servers extend Claude Code’s capabilities by providing specialized tools and knowledge bases. Claude Code can connect to MCP servers to access domain-specific expertise and functionality.
The Arm MCP Server provides AI assistants with tools and knowledge for Arm architecture development, migration, and optimization. This is particularly useful when working on Arm-based systems.
The Arm MCP Server includes several tools designed for Arm development:
You need Docker running on your system to use the Arm MCP Server. See the Docker install guide for instructions.
First, pull the Arm MCP Server image:
docker pull armlimited/arm-mcp:latest
Configure the Arm MCP Server using the claude mcp add command. You can configure MCP servers at three different scopes:
.mcp.json fileChoose the appropriate scope based on your needs. Project scope is recommended for team collaboration, while user scope is useful for personal tools you use across multiple projects.
Configure for a specific project (local scope)
Navigate to your project directory and add the Arm MCP Server:
cd your-project
claude mcp add --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
This configuration is stored in ~/.claude.json under your project’s path and is only accessible when working in this directory.
Configure for all projects (user scope)
To make the Arm MCP Server available across all your projects:
claude mcp add --scope user --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
This configuration is stored in ~/.claude.json and is accessible from any project directory.
Configure for team sharing (project scope)
To share the MCP server configuration with your team via version control:
cd your-project
claude mcp add --scope project --transport stdio arm-mcp -- docker run --rm -i --pull=always -v "$(pwd):/workspace" armlimited/arm-mcp:latest
This creates a .mcp.json file in your project root that can be committed to version control.
The Arm MCP Server automatically mounts your current working directory to the /workspace folder inside the Docker container when you use the configuration commands shown above.
To analyze a different directory, modify the volume mount in the docker run command. For example, to analyze /Users/username/myproject:
claude mcp add --transport stdio arm-mcp -- docker run --rm -i -v "/Users/username/myproject:/workspace" armlimited/arm-mcp:latest
List configured MCP servers:
claude mcp list
You should see arm-mcp in the list of configured servers.
Get details about the Arm MCP Server configuration:
claude mcp get arm-mcp
To test the server’s functionality, start Claude Code and ask it to use the Arm MCP tools:
claude
Then try one of these prompts:
> Use the Arm MCP Server to scan my codebase for x86-specific code
or
> Check if the nginx:latest Docker image supports Arm64
You can also use the /mcp command within Claude Code to see the status of all connected MCP servers and their available tools.
Here are some example prompts that use the Arm MCP Server tools:
Scan my workspace for code that needs updating for Arm compatibilityCheck if the postgres:latest container image supports Arm64 architectureSearch the Arm knowledge base for NEON intrinsics examplesFind learning resources about migrating from x86 to ArmAnalyze this assembly code for performance on Arm processorsRemove an MCP server:
claude mcp remove arm-mcp
Update an MCP server configuration by removing and re-adding it with new settings.
Check MCP server status within Claude Code:
> /mcp
If the Arm MCP Server doesn’t connect:
docker psdocker images | grep arm-mcpclaude mcp get arm-mcp for configuration errorsIf you encounter issues or have questions, reach out to mcpserver@arm.com .
Create custom prompts for common tasks in your workflow. Refer to the Claude Code documentation for advanced configuration options.
How would you rate this tool quick-install guide?
What is the primary reason for your feedback ?
Thank you! We're grateful for your feedback.