From aec65904862ad77da05138aa7be305359ece482c Mon Sep 17 00:00:00 2001 From: Mubashir Osmani Date: Mon, 24 Nov 2025 20:31:59 -0500 Subject: [PATCH] add strands tutorial (#17039) * add strands tutorial * configgg --- docs/my-website/docs/mcp.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/docs/my-website/docs/mcp.md b/docs/my-website/docs/mcp.md index 887c5278144..a9f7e249133 100644 --- a/docs/my-website/docs/mcp.md +++ b/docs/my-website/docs/mcp.md @@ -248,6 +248,41 @@ mcp_servers: X-Custom-Header: "some-value" ``` +### MCP Walkthroughs + +- **Strands (STDIO)** – [watch tutorial](https://screen.studio/share/ruv4D73F) + +> Add it from the UI + +```json title="strands-mcp" showLineNumbers +{ + "mcpServers": { + "strands-agents": { + "command": "uvx", + "args": ["strands-agents-mcp-server"], + "env": { + "FASTMCP_LOG_LEVEL": "INFO" + }, + "disabled": false, + "autoApprove": ["search_docs", "fetch_doc"] + } + } +} +``` + +> config.yml + +```yaml title="config.yml – strands MCP" showLineNumbers +mcp_servers: + strands_mcp: + transport: "stdio" + command: "uvx" + args: ["strands-agents-mcp-server"] + env: + FASTMCP_LOG_LEVEL: "INFO" +``` + + ### MCP Aliases You can define aliases for your MCP servers in the `litellm_settings` section. This allows you to: