From 51d3bbd571eadc86c3847762b3d2eee0d1fcff84 Mon Sep 17 00:00:00 2001 From: Mateo Torres Date: Thu, 8 Jan 2026 23:36:31 -0300 Subject: [PATCH 1/4] improved the quickstart output --- .../quickstarts/call-tool-agent/page.mdx | 60 +++++-------------- 1 file changed, 16 insertions(+), 44 deletions(-) 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..b425cd896 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"Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to {user_id}! Here's the 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( + `Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to ${userId}! Here's the metadata:` +); console.log(respose_send_email.output?.value); ``` @@ -310,21 +314,10 @@ 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....'} + Congratulations! Here's what you just achieved: + - A Google Docs containing the retrieved news was created + - An email with a link to that document was just sent to mateo@arcade.dev! Here's the metadata: + {'id': '19ba...', 'label_ids': ['UNREAD', 'SENT', 'INBOX'], 'thread_id': '19ba...', 'url': 'https://mail.google.com/mail/u/0/#sent/19ba...'} ``` @@ -335,37 +328,14 @@ 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/ - + Congratulations! Here's what you just achieved: + - A Google Docs containing the retrieved news was created + - An email with a link to that document was just sent to mateo@arcade.dev! Here's the 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 +430,7 @@ response_send_email = authorize_and_run_tool( ) # Print the response from the tool call +print(f"Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to {user_id}! Here's the metadata:") print(response_send_email.output.value) ``` @@ -564,6 +535,7 @@ const respose_send_email = await authorize_and_run_tool({ }); // Print the response from the tool call +console.log(`Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to ${userId}! Here's the metadata:`) console.log(respose_send_email.output?.value); ``` From 2a881ceb892083e9743e32a9863fb9f20fe5cffc Mon Sep 17 00:00:00 2001 From: Mateo Torres Date: Mon, 12 Jan 2026 13:56:54 -0300 Subject: [PATCH 2/4] Update app/en/get-started/quickstarts/call-tool-agent/page.mdx Co-authored-by: vfanelle --- app/en/get-started/quickstarts/call-tool-agent/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 b425cd896..f06384a67 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -430,7 +430,7 @@ response_send_email = authorize_and_run_tool( ) # Print the response from the tool call -print(f"Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to {user_id}! Here's the metadata:") +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) ``` From ec8b53896c0e6d8bf453601eab46a8a9029d61f9 Mon Sep 17 00:00:00 2001 From: Mateo Torres Date: Mon, 12 Jan 2026 13:57:04 -0300 Subject: [PATCH 3/4] Update app/en/get-started/quickstarts/call-tool-agent/page.mdx Co-authored-by: vfanelle --- app/en/get-started/quickstarts/call-tool-agent/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f06384a67..38b008a80 100644 --- a/app/en/get-started/quickstarts/call-tool-agent/page.mdx +++ b/app/en/get-started/quickstarts/call-tool-agent/page.mdx @@ -535,7 +535,7 @@ const respose_send_email = await authorize_and_run_tool({ }); // Print the response from the tool call -console.log(`Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to ${userId}! Here's the metadata:`) +console.log("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:") console.log(respose_send_email.output?.value); ``` From 0cc9a065b69b253401861443fb054cd630564bc0 Mon Sep 17 00:00:00 2001 From: Mateo Torres Date: Mon, 12 Jan 2026 17:45:51 -0300 Subject: [PATCH 4/4] tested and updated the output on all code snippets --- .../quickstarts/call-tool-agent/page.mdx | 30 +++++++++++++------ 1 file changed, 21 insertions(+), 9 deletions(-) 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 38b008a80..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,7 +236,7 @@ response_send_email = authorize_and_run_tool( ) # Print the response from the tool call -print(f"Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to {user_id}! Here's the metadata:") +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) ``` @@ -295,7 +295,7 @@ const respose_send_email = await authorize_and_run_tool({ // Print the response from the tool call console.log( - `Congratulations! Here's what you just achieved:\n - A Google Docs containing the retrieved news was created\n - An email with a link to that document was just sent to ${userId}! Here's the metadata:` + `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); ``` @@ -314,9 +314,14 @@ console.log(respose_send_email.output?.value); uv run example.py ``` ```text - Congratulations! Here's what you just achieved: - - A Google Docs containing the retrieved news was created - - An email with a link to that document was just sent to mateo@arcade.dev! Here's the metadata: + 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...'} ``` @@ -328,9 +333,14 @@ console.log(respose_send_email.output?.value); ``` ```text - Congratulations! Here's what you just achieved: - - A Google Docs containing the retrieved news was created - - An email with a link to that document was just sent to mateo@arcade.dev! Here's the metadata: + 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" ], @@ -535,7 +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 {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:") +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); ```