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 armswdev/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",
"armswdev/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:
~/.aws/amazonq/mcp.json
Example configuration:
{
"mcpServers": {
"arm_mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "[local directory path]:/workspace",
"--name", "arm-mcp",
"armswdev/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",
"armswdev/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.
armswdev/arm-mcplatestlinux/amd64, linux/arm64Content type
Image
Digest
sha256:dab8aea98โฆ
Size
646.8 MB
Last updated
10 months ago
docker pull armswdev/arm-mcp