An MCP server for software developers migrating code and containers to the Arm architecture.
10K+
A Docker image for the Arm Model Context Protocol (MCP) Server that exposes a set of tools to any MCP-enabled AI assistant (e.g. GitHub Copilot, Amazon Q, Codex CLI, etc.).
This image is designed to run locally and provide:
migrate-ease for scanning codebasessysreport for system informationRun the following command to pull the latest MCP server image:
docker pull armlimited/arm-mcp:latest
You can connect the MCP server to GitHub Copilot in VS Code by adding the following configuration:
{
"servers": {
"arm_mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "[local directory path]:/workspace",
"armlimited/arm-mcp:latest"
]
}
}
}
You can add this configuration either:
.vscode/mcp.json inside your project folder~/Library/Application Support/Code/User/mcp.jsonReplace
[local directory path]with the local path you want the MCP server to access.
Create or edit your MCP configuration file at:
~/.kiro/settings/mcp.json
Example configuration:
{
"mcpServers": {
"arm_mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "[local directory path]:/workspace",
"--name", "arm-mcp",
"armlimited/arm-mcp:latest"
],
"env": {},
"timeout": 60000
}
}
}
Replace
[local directory path]with the local path you want the MCP server to access.
Create or update your Codex CLI configuration file at:
~/.codex/config.toml
Example configuration:
[projects."/path/to/your/project"]
trust_level = "trusted"
[mcp_servers.arm_mcp]
command = "docker"
args = [
"run",
"--rm",
"-i",
"-v", "[local directory path]:/workspace",
"--name", "arm-mcp",
"armlimited/arm-mcp:latest"
]
env = {}
Replace
[local directory path]with the path you want the MCP server to access. Replace/path/to/your/projectwith your actual project path.
armlimited/arm-mcplatestlinux/amd64, linux/arm64Content type
Image
Digest
sha256:861496487โฆ
Size
844.6 MB
Last updated
10 days ago
docker pull armlimited/arm-mcp