diff --git a/app/en/get-started/quickstarts/call-tool-agent/page.mdx b/app/en/get-started/quickstarts/call-tool-agent/page.mdx index 84f313f51..923517a01 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -236,6 +236,7 @@ response_send_email = authorize_and_run_tool( ) # Print the response from the tool call +print(f"Success! Check your email at {user_id}\n\nYou just chained 3 tools together:\n 1. Searched Google News for stories about MCP URL mode elicitation\n 2. Created a Google Doc with the results\n 3. Sent yourself an email with the document link\n\nEmail metadata:") print(response_send_email.output.value) ``` @@ -293,6 +294,9 @@ const respose_send_email = await authorize_and_run_tool({ }); // Print the response from the tool call +console.log( + `Success! Check your email at ${userId}\n\nYou just chained 3 tools together:\n 1. Searched Google News for stories about MCP URL mode elicitation\n 2. Created a Google Doc with the results\n 3. Sent yourself an email with the document link\n\nEmail metadata:` +); console.log(respose_send_email.output?.value); ``` @@ -310,21 +314,15 @@ console.log(respose_send_email.output?.value); uv run example.py ``` ```text - latest news about MCP URL mode elicitation: - ---------------------------- - InfoWorld - Visual Studio Code adds multi-agent orchestration - https://www.infoworld.com/article/4105879/visual-studio-code-adds-multi-agent-orchestration.html - ---------------------------- - Visual Studio Magazine - VS Code 1.107 (November 2025 Update) Expands Multi-Agent Orchestration, Model Management - https://visualstudiomagazine.com/articles/2025/12/12/vs-code-1-107-november-2025-update-expands-multi-agent-orchestration-model-management.aspx - ---------------------------- - SD Times - Several new updates make their way into the MCP specification - https://sdtimes.com/ai/several-new-updates-make-their-way-into-the-mcp-specification/ - ---------------------------- - AI News - How the MCP spec update boosts security as infrastructure scales - https://www.artificialintelligence-news.com/news/how-the-mcp-spec-update-boosts-security-as-infrastructure-scales/ - - {'body': '', 'cc': '', 'date': '', 'from': '', 'header_message_id': '', 'history_id': '', 'id': '19b....', 'in_reply_to': '', 'label_ids': ['UNREAD', 'SENT', 'INBOX'], 'references': '', 'reply_to': '', 'snippet': '', 'subject': '', 'thread_id': '19b....', 'to': '', 'url': 'https://mail.google.com/mail/u/0/#sent/19b....'} + Success! Check your email at mateo@arcade.dev + + You just chained 3 tools together: + 1. Searched Google News for stories about MCP URL mode elicitation + 2. Created a Google Doc with the results + 3. Sent yourself an email with the document link + + Email metadata: + {'id': '19ba...', 'label_ids': ['UNREAD', 'SENT', 'INBOX'], 'thread_id': '19ba...', 'url': 'https://mail.google.com/mail/u/0/#sent/19ba...'} ``` @@ -335,37 +333,19 @@ console.log(respose_send_email.output?.value); ``` ```text - latest news about MCP URL mode elicitation: - -------------------------------- - InfoWorld - Visual Studio Code adds multi-agent orchestration - https://www.infoworld.com/article/4105879/visual-studio-code-adds-multi-agent-orchestration.html - -------------------------------- - Visual Studio Magazine - VS Code 1.107 (November 2025 Update) Expands Multi-Agent Orchestration, Model Management - https://visualstudiomagazine.com/articles/2025/12/12/vs-code-1-107-november-2025-update-expands-multi-agent-orchestration-model-management.aspx - -------------------------------- - SD Times - Several new updates make their way into the MCP specification - https://sdtimes.com/ai/several-new-updates-make-their-way-into-the-mcp-specification/ - -------------------------------- - AI News - How the MCP spec update boosts security as infrastructure scales - https://www.artificialintelligence-news.com/news/how-the-mcp-spec-update-boosts-security-as-infrastructure-scales/ + Success! Check your email at mateo@arcade.dev + You just chained 3 tools together: + 1. Searched Google News for stories about MCP URL mode elicitation + 2. Created a Google Doc with the results + 3. Sent yourself an email with the document link + + Email metadata: { - body: "", - cc: "", - date: "", - from: "", - header_message_id: "", - history_id: "", - id: "19b...", - in_reply_to: "", + id: "19ba...", label_ids: [ "UNREAD", "SENT", "INBOX" ], - references: "", - reply_to: "", - snippet: "", - subject: "", - thread_id: "19b...", - to: "", - url: "https://mail.google.com/mail/u/0/#sent/19b...", + thread_id: "19ba...", + url: "https://mail.google.com/mail/u/0/#sent/19ba...", } ``` @@ -460,6 +440,7 @@ response_send_email = authorize_and_run_tool( ) # Print the response from the tool call +print(f"Success! Check your email at {user_id}\n\nYou just chained 3 tools together:\n 1. Searched Google News for stories about MCP URL mode elicitation\n 2. Created a Google Doc with the results\n 3. Sent yourself an email with the document link\n\nEmail metadata:") print(response_send_email.output.value) ``` @@ -564,6 +545,9 @@ const respose_send_email = await authorize_and_run_tool({ }); // Print the response from the tool call +console.log( + `Success! Check your email at ${userId}\n\nYou just chained 3 tools together:\n 1. Searched Google News for stories about MCP URL mode elicitation\n 2. Created a Google Doc with the results\n 3. Sent yourself an email with the document link\n\nEmail metadata:` +); console.log(respose_send_email.output?.value); ```