@@ -225,12 +225,12 @@ agentcore add memory \
225225 --expiry 30
226226```
227227
228- | Flag | Description |
229- | ---------------------- | ------------------------------------------------------------------------------------- |
230- | ` --name <name> ` | Memory name |
231- | ` --strategies <types> ` | Comma-separated: ` SEMANTIC ` , ` SUMMARIZATION ` , ` USER_PREFERENCE ` , ` EPISODIC ` , ` CUSTOM ` |
232- | ` --expiry <days> ` | Event expiry duration in days (default: 30, min: 7, max: 365) |
233- | ` --json ` | JSON output |
228+ | Flag | Description |
229+ | ---------------------- | --------------------------------------------------------------------------- |
230+ | ` --name <name> ` | Memory name |
231+ | ` --strategies <types> ` | Comma-separated: ` SEMANTIC ` , ` SUMMARIZATION ` , ` USER_PREFERENCE ` , ` EPISODIC ` |
232+ | ` --expiry <days> ` | Event expiry duration in days (default: 30, min: 7, max: 365) |
233+ | ` --json ` | JSON output |
234234
235235### add gateway
236236
@@ -474,22 +474,23 @@ Start local development server with hot-reload.
474474agentcore dev
475475agentcore dev --agent MyAgent --port 3000
476476agentcore dev --logs # Non-interactive
477- agentcore dev --invoke " Hello" --stream # Direct invoke
477+ agentcore dev " Hello" --stream # Invoke running dev server
478+ agentcore dev " Hello" --agent MyAgent # Invoke specific agent
478479
479480# MCP protocol dev commands
480- agentcore dev --invoke list-tools
481- agentcore dev --invoke call-tool --tool myTool --input ' {"arg": "value"}'
481+ agentcore dev list-tools
482+ agentcore dev call-tool --tool myTool --input ' {"arg": "value"}'
482483```
483484
484- | Flag | Description |
485- | ----------------------- | -- ---------------------------------------------------- |
486- | ` -p, --port <port> ` | Port (default: 8080; MCP uses 8000, A2A uses 9000) |
487- | ` -a , --agent <name > ` | Agent to run (required if multiple agents) |
488- | ` -i , --invoke <prompt > ` | Invoke running server |
489- | ` -s, --stream ` | Stream response (with --invoke) |
490- | ` -l, --logs ` | Non-interactive stdout logging |
491- | ` --tool <name> ` | MCP tool name (with ` --invoke call-tool` ) |
492- | ` --input <json> ` | MCP tool arguments as JSON (with ` --invoke call- tool ` ) |
485+ | Flag / Argument | Description |
486+ | -------------------- | ---------------------------------------------------- |
487+ | ` [prompt] ` | Send a prompt to a running dev server |
488+ | ` -p , --port <port > ` | Port (default: 8080; MCP uses 8000, A2A uses 9000) |
489+ | ` -a , --agent <name > ` | Agent to run or invoke (required if multiple agents) |
490+ | ` -s, --stream ` | Stream response when invoking |
491+ | ` -l, --logs ` | Non-interactive stdout logging |
492+ | ` --tool <name> ` | MCP tool name (with ` call-tool ` prompt ) |
493+ | ` --input <json> ` | MCP tool arguments as JSON (with ` --tool ` ) |
493494
494495### invoke
495496
0 commit comments