@@ -31,8 +31,8 @@ flowchart LR
3131 App["Your Application<br>with MCP Clients"]
3232 S3["MCP Server A<br>(Lambda function)"]
3333 S4["MCP Server B<br>(Lambda function)"]
34- App <-->|"MCP Protocol<br>(invoke function)"| S3
35- App <-->|"MCP Protocol<br>(invoke function)"| S4
34+ App <-->|"MCP Protocol<br>with custom transport<br> (invoke function)"| S3
35+ App <-->|"MCP Protocol<br>with custom transport<br> (invoke function)"| S4
3636 end
3737```
3838
@@ -132,7 +132,9 @@ const serverParams = {
132132
133133export const handler: Handler = async (event , context : Context ) => {
134134 // Dynamically import ES module into CommonJS Lambda function
135- const { stdioServerAdapter } = await import (" mcp-server-with-aws-lambda" );
135+ const { stdioServerAdapter } = await import (
136+ " run-mcp-servers-with-aws-lambda"
137+ );
136138
137139 return await stdioServerAdapter (serverParams , event , context );
138140};
@@ -172,7 +174,7 @@ with the MCP protocol and returns the function's response to the caller.
172174import {
173175 LambdaFunctionParameters ,
174176 LambdaFunctionClientTransport ,
175- } from " mcp-server -with-aws-lambda" ;
177+ } from " run- mcp-servers -with-aws-lambda" ;
176178import { Client } from " @modelcontextprotocol/sdk/client/index.js" ;
177179
178180const serverParams: LambdaFunctionParameters = {
0 commit comments