You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/kiro-cli.md
+30-62Lines changed: 30 additions & 62 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -206,94 +206,62 @@ Use the arrow keys to select the model you want to use.
206
206
207
207
You can ask Kiro to set the default model for future sessions.
208
208
209
-
## Install an MCP server
209
+
## Install a local MCP server
210
210
211
-
As an example of using MCP with Kiro, you can configure a local GitHub MCP server.
211
+
The Arm MCP Server is an MCP server providing AI assistants with tools and knowledge for Arm architecture development, migration, and optimization. This section shows how to configure the Arm MCP server locally using Docker.
212
212
213
-
Go to your GitHub account developer settings and create a personal access token with the following permissions:
213
+
First, pull the MCP server image to your local machine:
214
214
215
-
-`repo` (Full control of private repositories)
216
-
-`read:org` (Read organization membership)
217
-
-`read:user` (Read user profile data)
215
+
```console
216
+
docker pull armlimited/arm-mcp:latest
217
+
```
218
+
219
+
You also need Docker running on the system. See the [Docker install guide](/install-guides/docker/) for instructions.
218
220
219
-
Use an editor to add the content below to the file `$HOME/.kiro/settings/mcp.json`:
221
+
### How do I configure the Arm MCP server?
222
+
223
+
Modify the file `~/.kiro/settings/mcp.json` to add the Arm MCP server via a Docker container.
224
+
225
+
To analyze a local codebase, use a `-v` command to mount a volume to the Arm MCP server `/workspace` folder so it can access code you want to analyze with migrate-ease and other tools.
226
+
227
+
Replace the path `/Users/yourname01/yourlocalcodebase` with the path to your local codebase:
0 commit comments