@aws/run-mcp-servers-with-aws-lambda 0.4.8 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -570,12 +570,12 @@ See a full, deployable example [here](examples/servers/cat-facts/).
570
570
 
571
571
  ```python
572
572
  from mcp import ClientSession
573
- from mcp_lambda.client.streamable_http_sigv4 import streamablehttp_client_with_sigv4
573
+ from mcp_proxy_for_aws.client import aws_iam_streamablehttp_client
574
574
 
575
- async with streamablehttp_client_with_sigv4(
576
- url="https://url-id-12345.lambda-url.us-west-2.on.aws",
577
- service="lambda",
578
- region="us-west-2",
575
+ async with aws_iam_streamablehttp_client(
576
+ endpoint="https://url-id-12345.lambda-url.us-west-2.on.aws",
577
+ aws_service="lambda",
578
+ aws_region="us-west-2",
579
579
  ) as (
580
580
  read_stream,
581
581
  write_stream,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws/run-mcp-servers-with-aws-lambda",
3
3
  "description": "Run Model Context Protocol (MCP) servers with AWS Lambda",
4
- "version": "0.4.8",
4
+ "version": "0.5.1",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "author": {