Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 27 additions & 43 deletions app/en/get-started/quickstarts/call-tool-agent/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down Expand Up @@ -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);
```

Expand All @@ -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...'}
```

</Tabs.Tab>
Expand All @@ -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...",
}
```

Expand Down Expand Up @@ -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)
```

Expand Down Expand Up @@ -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);
```

Expand Down