@@ -6,14 +6,15 @@ This guide will walk you through building the source code in this repository,
66deploying example MCP servers in Lambda functions,
77and using an example chatbot client to communicate with those Lambda-based MCP servers.
88
9- The example chatbot client will communicate with five servers:
9+ The example chatbot client will communicate with seven servers:
1010
11111 . a Lambda function-based ** time** MCP server (Python). Ask questions like "What is the current time?".
12122 . a Lambda function-based ** mcpdoc** MCP server (Python). Ask questions like "What documentation sources do you have access to?".
13- 3 . a Lambda function-based ** weather-alerts** MCP server (Typescript). Ask questions like "Are there any weather alerts right now?".
14- 4 . a Lambda function-based ** cat-facts** MCP server (Typescript). Ask questions like "Tell me something about cats".
15- 5 . a Lambda function-based ** dog-facts** MCP server (Typescript). Ask questions like "Tell me something about dogs".
16- 6 . a [ local ** fetch** MCP server] ( https://github.com/modelcontextprotocol/servers/tree/main/src/fetch ) . Ask questions like "Who is Tom Cruise?".
13+ 3 . a Lambda function-based ** dad-jokes** MCP server (Python). Ask questions like "Tell me a good dad joke."
14+ 4 . a Lambda function-based ** weather-alerts** MCP server (Typescript). Ask questions like "Are there any weather alerts right now?".
15+ 5 . a Lambda function-based ** cat-facts** MCP server (Typescript). Ask questions like "Tell me something about cats".
16+ 6 . a Lambda function-based ** dog-facts** MCP server (Typescript). Ask questions like "Tell me something about dogs".
17+ 7 . a [ local ** fetch** MCP server] ( https://github.com/modelcontextprotocol/servers/tree/main/src/fetch ) . Ask questions like "Who is Tom Cruise?".
1718
1819### Setup
1920
@@ -121,6 +122,16 @@ uv pip install -r requirements.txt
121122cdk deploy --app ' python3 cdk_stack.py'
122123```
123124
125+ Deploy the Lambda 'dad-jokes' function - the deployed function will be named "mcp-server-dad-jokes".
126+
127+ ``` bash
128+ cd examples/servers/dad-jokes/
129+
130+ uv pip install -r requirements.txt
131+
132+ cdk deploy --app ' python3 cdk_stack.py'
133+ ```
134+
124135### Deploy the example Typescript servers
125136
126137Deploy the Lambda 'weather-alerts' function - the deployed function will be named "mcp-server-weather-alerts".
0 commit comments