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
@@ -52,6 +52,35 @@ You can use the Strands Agents MCP server with
52
52
[40+ applications that support MCP servers](https://modelcontextprotocol.io/clients),
53
53
including Amazon Q Developer CLI, Anthropic Claude Code, Cline, and Cursor.
54
54
55
+
Get started quickly with one-click installation buttons for popular MCP clients. Click the buttons below to install servers directly in your IDE:
56
+
57
+
[](https://kiro.dev/launch/mcp/add?name=strands-agents&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22strands-agents-mcp-server%22%5D%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%22search_docs%22%2C%22fetch_doc%22%5D%7D)
58
+
[](https://cursor.com/en-US/install-mcp?name=strands-agents&config=eyJjb21tYW5kIjoidXZ4IHN0cmFuZHMtYWdlbnRzLW1jcC1zZXJ2ZXIifQ%3D%3D)
59
+
[](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22strands-agents%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22strands-agents-mcp-server%22%5D%7D)
60
+
61
+
### Kiro example
62
+
63
+
See the [Kiro documentation](https://kiro.dev/docs/mcp/configuration/)
64
+
for instructions on managing MCP configuration.
65
+
66
+
In `~/.kiro/settings/mcp.json`:
67
+
68
+
```json
69
+
{
70
+
"mcpServers": {
71
+
"strands-agents": {
72
+
"command": "uvx",
73
+
"args": ["strands-agents-mcp-server"],
74
+
"env": {
75
+
"FASTMCP_LOG_LEVEL": "INFO"
76
+
},
77
+
"disabled": false,
78
+
"autoApprove": ["search_docs", "fetch_doc"]
79
+
}
80
+
}
81
+
}
82
+
```
83
+
55
84
### Q Developer CLI example
56
85
57
86
See the [Q Developer CLI documentation](https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-mcp-configuration.html)
@@ -69,10 +98,7 @@ In `~/.aws/amazonq/mcp.json`:
69
98
"FASTMCP_LOG_LEVEL": "INFO"
70
99
},
71
100
"disabled": false,
72
-
"autoApprove": [
73
-
"search_docs",
74
-
"fetch_doc"
75
-
]
101
+
"autoApprove": ["search_docs", "fetch_doc"]
76
102
}
77
103
}
78
104
}
@@ -117,10 +143,25 @@ In `~/.cursor/mcp.json`:
117
143
"FASTMCP_LOG_LEVEL": "INFO"
118
144
},
119
145
"disabled": false,
120
-
"autoApprove": [
121
-
"search_docs",
122
-
"fetch_doc"
123
-
]
146
+
"autoApprove": ["search_docs", "fetch_doc"]
147
+
}
148
+
}
149
+
}
150
+
```
151
+
152
+
### VS Code example
153
+
154
+
See the [VS Code documentation](https://code.visualstudio.com/docs/copilot/customization/mcp-servers)
Note: This requires [npx](https://docs.npmjs.com/cli/v11/commands/npx) to be installed on your system. It comes bundled with [Node.js](https://nodejs.org/).
182
+
Note: This requires [npx](https://docs.npmjs.com/cli/v11/commands/npx) to be installed on your system. It comes bundled with [Node.js](https://nodejs.org/).
142
183
143
184
The Inspector is also useful for troubleshooting MCP server issues as it provides detailed connection and protocol information. For an in-depth guide, have a look at the [MCP Inspector documentation](https://modelcontextprotocol.io/docs/tools/inspector).
144
185
145
186
## Getting Started
146
187
147
188
1.**Install prerequisites**:
189
+
148
190
- Install [uv](https://github.com/astral-sh/uv) following the [official installation instructions](https://github.com/astral-sh/uv#installation)
149
191
- Make sure you have [Node.js](https://nodejs.org/) installed for npx commands
150
192
151
193
2.**Configure your MCP client**:
194
+
152
195
- Choose your preferred MCP client from the installation examples above
153
196
- Add the Strands Agents MCP server configuration to your client
0 commit comments