@@ -49,7 +49,7 @@ This library supports connecting to Lambda-based MCP servers in three ways:
49492 . A custom Streamable HTTP transport with support for SigV4, using a Lambda function URL. Authenticated with AWS IAM.
50503 . A custom Lambda invocation transport, using the Lambda Invoke API directly. Authenticated with AWS IAM.
5151
52- ## Using API Gateway
52+ ## Use API Gateway
5353
5454``` mermaid
5555flowchart LR
@@ -206,7 +206,7 @@ See a full example as part of the sample chatbot [here](examples/chatbots/typesc
206206
207207</details >
208208
209- ## Using a Lambda function URL
209+ ## Use a Lambda function URL
210210
211211``` mermaid
212212flowchart LR
@@ -358,7 +358,7 @@ See a full example as part of the sample chatbot [here](examples/chatbots/typesc
358358
359359</details >
360360
361- ## Using the Lambda Invoke API
361+ ## Use the Lambda Invoke API
362362
363363``` mermaid
364364flowchart LR
@@ -506,7 +506,7 @@ See a full example as part of the sample chatbot [here](examples/chatbots/typesc
506506 Other languages such as Kotlin are not supported.
507507- This library only adapts stdio MCP servers for Lambda, not servers written for other protocols such as SSE.
508508- This library does not maintain any MCP server state or sessions across Lambda function invocations.
509- Only stateless MCP servers are a good fit for using this adapter . For example, MCP servers
509+ Only stateless MCP servers are a good fit for using this library . For example, MCP servers
510510 that invoke stateless tools like the [ time MCP server] ( https://github.com/modelcontextprotocol/servers/tree/main/src/time )
511511 or make stateless web requests like the [ fetch MCP server] ( https://github.com/modelcontextprotocol/servers/tree/main/src/fetch ) .
512512 Stateful MCP servers are not a good fit, because they will lose their state on every request.
0 commit comments