Skip to content

Commit 7193eca

Browse files
committed
feat: Switch from using quoterism API to zenquotes API
1 parent f82800c commit 7193eca

File tree

16 files changed

+90
-113
lines changed

16 files changed

+90
-113
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ updates:
121121
rebase-strategy: "disabled"
122122

123123
- package-ecosystem: pip
124-
directory: "/examples/servers/inspiration"
124+
directory: "/examples/servers/zen"
125125
schedule:
126126
interval: monthly
127127
open-pull-requests-limit: 10

.github/workflows/cdk-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ jobs:
156156
with:
157157
inputs: ./examples/servers/book-search/gateway_setup/requirements.txt
158158

159-
check_inspiration_server:
160-
name: Check Python-based Inspiration Server
159+
check_zen_server:
160+
name: Check Python-based Zen Server
161161
runs-on: ubuntu-latest
162162
permissions:
163163
contents: read
@@ -172,11 +172,11 @@ jobs:
172172

173173
- name: Install gateway setup dependencies
174174
run: pip install -r requirements.txt
175-
working-directory: ./examples/servers/inspiration
175+
working-directory: ./examples/servers/zen
176176

177177
- uses: pypa/[email protected]
178178
with:
179-
inputs: ./examples/servers/inspiration/requirements.txt
179+
inputs: ./examples/servers/zen/requirements.txt
180180

181181
check_auth_stack:
182182
name: Check Typescript-based Cognito stack

DEVELOP.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The example chatbot client will communicate with ten servers:
1212
2. **dog-facts**: Ask "Tell me something about dogs."
1313
3. **book-search**: Ask "Who wrote the book Pride and Prejudice?"
1414
4. **dictionary**: Ask "How do you pronounce the word 'onomatopoeia'?"
15-
5. **inspiration**: Ask "Tell me the inspirational quote of the day."
15+
5. **zen**: Ask "Tell me the inspirational quote of the day."
1616
6. **mcpdoc**: Ask "Summarize the first page of the Strands Agents documentation."
1717
7. **cat-facts**: Ask "Tell me something about cats."
1818
8. **time**: Ask "What is the current time?".
@@ -25,14 +25,14 @@ The example chatbot client will communicate with ten servers:
2525
| [dog-facts](/examples/servers/dog-facts/) | Typescript | Lambda | Streamable HTTP transport | OAuth | API Gateway |
2626
| [book-search](/examples/servers/book-search/) | Python | Lambda | Streamable HTTP transport | OAuth | Bedrock AgentCore Gateway |
2727
| [dictionary](/examples/servers/dictionary/) | Typescript | Lambda | Streamable HTTP transport | OAuth | Bedrock AgentCore Gateway |
28-
| [inspiration](/examples/servers/inspiration/) | N/A | None | Streamable HTTP transport | OAuth | Bedrock AgentCore Gateway |
28+
| [zen](/examples/servers/zen/) | N/A | None | Streamable HTTP transport | OAuth | Bedrock AgentCore Gateway |
2929
| [mcpdoc](/examples/servers/mcpdoc/) | Python | Lambda | Custom Streamable HTTP transport with SigV4 support | AWS IAM | Lambda Function URL |
3030
| [cat-facts](/examples/servers/cat-facts/) | Typescript | Lambda | Custom Streamable HTTP transport with SigV4 support | AWS IAM | Lambda Function URL |
3131
| [time](/examples/servers/time/) | Python | Lambda | Custom Lambda Invoke transport | AWS IAM | Lambda Invoke API |
3232
| [weather-alerts](/examples/servers/weather-alerts/) | Typescript | Lambda | Custom Lambda Invoke transport | AWS IAM | Lambda Invoke API |
3333
| [fetch](https://pypi.org/project/mcp-server-fetch/) | Python | Local process | stdio | N/A | N/A |
3434

35-
Note: The 'inspiration' MCP server uses Bedrock AgentCore Gateway's built-in support for OpenAPI targets,
35+
Note: The 'zen' MCP server uses Bedrock AgentCore Gateway's built-in support for OpenAPI targets,
3636
so there is no Lambda function in that example.
3737

3838
### Setup
@@ -211,12 +211,12 @@ npm install
211211
npm run setup
212212
```
213213

214-
#### Deploy inspiration MCP server
214+
#### Deploy zen MCP server
215215

216-
Deploy the 'inspiration' Bedrock AgentCore Gateway.
216+
Deploy the 'zen' Bedrock AgentCore Gateway.
217217

218218
```bash
219-
cd examples/servers/inspiration/
219+
cd examples/servers/zen/
220220

221221
uv pip install -r requirements.txt
222222

e2e_tests/clean_up_integ_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cd gateway_setup/
2727
python teardown_gateway.py
2828
cd ../
2929

30-
cd ../inspiration
30+
cd ../zen
3131
python teardown_gateway.py
3232

3333
cd ../weather-alerts

e2e_tests/run_integ_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ uv pip install -r requirements.txt
3838
python setup_gateway.py
3939
cd ../
4040

41-
# Deploy Python-based inspiration MCP server
42-
cd ../inspiration
41+
# Deploy Python-based zen MCP server
42+
cd ../zen
4343
uv pip install -r requirements.txt
4444
python setup_gateway.py
4545

e2e_tests/servers_config.integ.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"dad-jokes": {
3131
"serverStackName": "LambdaMcpServer-DadJokes-INTEG_TEST_ID"
3232
},
33-
"inspiration": {
34-
"serverSsmParameterName": "LambdaMcpServer-Inspiration-Gateway-INTEG_TEST_ID",
33+
"zen": {
34+
"serverSsmParameterName": "LambdaMcpServer-Zen-Gateway-INTEG_TEST_ID",
3535
"serverSsmRegion": "us-west-2"
3636
},
3737
"bookSearch": {

examples/chatbots/python/servers_config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"dad-jokes": {
3131
"serverStackName": "LambdaMcpServer-DadJokes"
3232
},
33-
"inspiration": {
34-
"serverSsmParameterName": "LambdaMcpServer-Inspiration-Gateway",
33+
"zen": {
34+
"serverSsmParameterName": "LambdaMcpServer-Zen-Gateway",
3535
"serverSsmRegion": "us-west-2"
3636
},
3737
"bookSearch": {

examples/chatbots/typescript/servers_config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"dad-jokes": {
3131
"serverStackName": "LambdaMcpServer-DadJokes"
3232
},
33-
"inspiration": {
34-
"serverSsmParameterName": "LambdaMcpServer-Inspiration-Gateway",
33+
"zen": {
34+
"serverSsmParameterName": "LambdaMcpServer-Zen-Gateway",
3535
"serverSsmRegion": "us-west-2"
3636
},
3737
"bookSearch": {

examples/servers/auth/lib/mcp-auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class McpAuthStack extends cdk.Stack {
9696
"dog-facts",
9797
"book-search",
9898
"dictionary",
99-
"inspiration",
99+
"zen",
100100
];
101101
const resourceServerScopes = mcpServers.map(
102102
(mcpServer) =>

examples/servers/inspiration/quoterism-openapi.json

Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
 (0)