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
|`-y, --yes`| Auto-approve preflight changes without prompting |`false`|
95
96
96
97
---
97
98
@@ -139,6 +140,46 @@ Run `adk dev` first to create a development bot if you don't have a `devId` in y
139
140
140
141
---
141
142
143
+
### `adk mcp`
144
+
145
+
Start an MCP (Model Context Protocol) server for AI assistant integration. This allows AI coding assistants like Claude Code and Cursor to interact with your ADK agent.
146
+
147
+
**Usage:**
148
+
```bash
149
+
adk mcp
150
+
adk mcp --cwd ./my-agent
151
+
```
152
+
153
+
**Flags:**
154
+
155
+
| Flag | Description |
156
+
|------|-------------|
157
+
|`--cwd`| Working directory for MCP operations |
158
+
159
+
#### `adk mcp:init`
160
+
161
+
Generate MCP configuration files for AI assistants.
162
+
163
+
**Usage:**
164
+
```bash
165
+
adk mcp:init --tool cursor
166
+
adk mcp:init --tool claude-code --tool vscode
167
+
adk mcp:init --all
168
+
adk mcp:init --all --force
169
+
adk mcp:init --tool cursor --project-dir ./bot
170
+
```
171
+
172
+
**Flags:**
173
+
174
+
| Flag | Description |
175
+
|------|-------------|
176
+
|`--tool`| Specific tool(s) to configure: `claude-code`, `vscode`, `cursor`|
177
+
|`--all`| Generate configuration for all supported tools |
0 commit comments