Skip to content

Commit 0c7ed58

Browse files
committed
chore: Docs for auth stack
1 parent 493dc72 commit 0c7ed58

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

examples/servers/auth/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# MCP Auth Stack
22

33
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.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
//

0 commit comments

Comments
 (0)