Skip to content

Commit 4c88ea4

Browse files
committed
fix: Make the sample mcpdoc prompt more specific to make sure the model selects mcpdoc tools
1 parent 180c62b commit 4c88ea4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

DEVELOP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ and using an example chatbot client to communicate with those Lambda-based MCP s
99
The example chatbot client will communicate with seven servers:
1010

1111
1. **dad-jokes**: Ask "Tell me a good dad joke."
12-
2. **dog-facts**: Ask "Tell me something about dogs".
13-
3. **mcpdoc**: Ask "What is Strands Agents?".
14-
4. **cat-facts**: Ask "Tell me something about cats".
12+
2. **dog-facts**: Ask "Tell me something about dogs."
13+
3. **mcpdoc**: Ask "Summarize the first page of the Strands Agents documentation."
14+
4. **cat-facts**: Ask "Tell me something about cats."
1515
5. **time**: Ask "What is the current time?".
1616
6. **weather-alerts**: Ask "Are there any weather alerts right now?".
1717
7. **fetch**: Ask "Who is Tom Cruise?".

e2e_tests/python/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async def main() -> None:
116116
"Hello!",
117117
"What is the current time in Seattle?",
118118
"Are there any weather alerts right now?",
119-
"What is Strands Agents?",
119+
"Summarize the first page of the Strands Agents documentation.",
120120
"Tell me a dad joke.",
121121
"Tell me a dog fact.",
122122
"Tell me a cat fact.",

e2e_tests/typescript/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function main(): Promise<void> {
5959
"Hello!",
6060
"What is the current time in Seattle?",
6161
"Are there any weather alerts right now?",
62-
"What is Strands Agents?",
62+
"Summarize the first page of the Strands Agents documentation.",
6363
"Tell me a dad joke.",
6464
"Tell me a dog fact.",
6565
"Tell me a cat fact.",

0 commit comments

Comments
 (0)