File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11# MCP Auth Stack
22
33This CDK stack creates AWS Cognito resources for OAuth authentication/authorization to be used with the example MCP (Model Context Protocol) servers.
4+
5+ ### Deploy
6+
7+ ``` bash
8+ npm install
9+
10+ npm run build
11+
12+ cdk deploy --app ' node lib/mcp-auth.js'
13+ ```
14+
15+ See the [ development guide] ( /DEVELOP.md ) for full instructions to deploy and run the examples in this repository.
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ export class McpAuthStack extends cdk.Stack {
325325 deployOptions : {
326326 stageName : "prod" ,
327327 throttlingRateLimit : 1 ,
328- throttlingBurstLimit : 1 ,
328+ throttlingBurstLimit : 5 ,
329329 // TODO re-enable if bot-driven Lambda requests get more expensive than the
330330 // cheapest API Gateway cache ($14.60 / month).
331331 //
You can’t perform that action at this time.
0 commit comments