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 1
1
# MCP Auth Stack
2
2
3
3
This 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 {
325
325
deployOptions : {
326
326
stageName : "prod" ,
327
327
throttlingRateLimit : 1 ,
328
- throttlingBurstLimit : 1 ,
328
+ throttlingBurstLimit : 5 ,
329
329
// TODO re-enable if bot-driven Lambda requests get more expensive than the
330
330
// cheapest API Gateway cache ($14.60 / month).
331
331
//
You can’t perform that action at this time.
0 commit comments