Skip to content

Commit 26e6e61

Browse files
committed
feat: Use 'with' not 'in' for project name
1 parent 9d34f8b commit 26e6e61

File tree

18 files changed

+42
-42
lines changed

18 files changed

+42
-42
lines changed

.github/workflows/cdk-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
- name: Install CDK CLI
4848
run: npm install -g aws-cdk
4949

50-
- name: Build and link mcp-server-in-aws-lambda package
50+
- name: Build and link mcp-server-with-aws-lambda package
5151
run: npm ci && npm run build && npm link
5252
working-directory: ./src/typescript
5353

5454
- name: Install dependencies
55-
run: npm ci && npm link mcp-server-in-aws-lambda
55+
run: npm ci && npm link mcp-server-with-aws-lambda
5656
working-directory: ./examples/servers/weather-alerts
5757

5858
- name: Build

.github/workflows/typescript-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
with:
4343
node-version: 20
4444

45-
- name: Build and link mcp-server-in-aws-lambda package
45+
- name: Build and link mcp-server-with-aws-lambda package
4646
run: npm ci && npm run build && npm link
4747
working-directory: ./src/typescript
4848

4949
- name: Install dependencies
50-
run: npm ci && npm link mcp-server-in-aws-lambda
50+
run: npm ci && npm link mcp-server-with-aws-lambda
5151
working-directory: ./examples/chatbots/typescript
5252

5353
- name: Build

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5-
## [0.0.2](https://github.com/awslabs/run-model-context-protocol-servers-in-aws-lambda/compare/v0.0.1...v0.0.2) (2025-04-01)
5+
## [0.0.2](https://github.com/awslabs/run-model-context-protocol-servers-with-aws-lambda/compare/v0.0.1...v0.0.2) (2025-04-01)

DEVELOP.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ cdk bootstrap aws://<aws account id>/us-east-2
5050

5151
### Build the Python module
5252

53-
Install the mcp-server-in-aws-lambda Python module from source:
53+
Install the mcp-server-with-aws-lambda Python module from source:
5454

5555
```bash
5656
cd src/python/
@@ -68,7 +68,7 @@ uv run pytest
6868

6969
### Build the Typescript package
7070

71-
Build the mcp-server-in-aws-lambda Typescript module:
71+
Build the mcp-server-with-aws-lambda Typescript module:
7272

7373
```bash
7474
cd src/typescript/
@@ -101,7 +101,7 @@ cd examples/servers/weather-alerts/
101101

102102
npm install
103103

104-
npm link mcp-server-in-aws-lambda
104+
npm link mcp-server-with-aws-lambda
105105

106106
npm run build
107107

@@ -129,7 +129,7 @@ cd examples/chatbots/typescript/
129129

130130
npm install
131131

132-
npm link mcp-server-in-aws-lambda
132+
npm link mcp-server-with-aws-lambda
133133

134134
npm run build
135135

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Run Model Context Protocol (MCP) servers in AWS Lambda
1+
# Run Model Context Protocol (MCP) servers with AWS Lambda
22

33
This project enables you to run [Model Context Protocol](https://modelcontextprotocol.io) stdio-based servers in AWS Lambda functions.
44

@@ -132,7 +132,7 @@ const serverParams = {
132132

133133
export const handler: Handler = async (event, context: Context) => {
134134
// Dynamically import ES module into CommonJS Lambda function
135-
const { stdioServerAdapter } = await import("mcp-server-in-aws-lambda");
135+
const { stdioServerAdapter } = await import("mcp-server-with-aws-lambda");
136136

137137
return await stdioServerAdapter(serverParams, event, context);
138138
};
@@ -172,7 +172,7 @@ with the MCP protocol and returns the function's response to the caller.
172172
import {
173173
LambdaFunctionParameters,
174174
LambdaFunctionClientTransport,
175-
} from "mcp-server-in-aws-lambda";
175+
} from "mcp-server-with-aws-lambda";
176176
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
177177

178178
const serverParams: LambdaFunctionParameters = {

e2e_tests/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ uvicorn>=0.32.1
44

55
# For testing, this module is installed from local files.
66
# Uncomment this line to build using the module from PyPi
7-
# mcp-server-in-aws-lambda >= 0.0.1
7+
# mcp-server-with-aws-lambda >= 0.0.1

e2e_tests/run_integ_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ npm link
2525

2626
cd ../../examples/servers/weather-alerts/
2727
npm ci
28-
npm link mcp-server-in-aws-lambda
28+
npm link mcp-server-with-aws-lambda
2929
npm run build
3030
cdk deploy --app 'node lib/weather-alerts-mcp-server.js'
3131

@@ -42,6 +42,6 @@ python main.py
4242
# Run the Typescript integ test
4343
cd ../typescript/
4444
npm ci
45-
npm link mcp-server-in-aws-lambda
45+
npm link mcp-server-with-aws-lambda
4646
npm run build
4747
npm test

e2e_tests/setup/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ To set up an AWS account for running integration tests on GitHub:
44
aws cloudformation deploy \
55
--template-file integ-test-authentication.yaml \
66
--stack-name github-integ-test-identity-provider \
7-
--parameter-overrides GitHubOrg=awslabs RepositoryName=run-model-context-protocol-servers-in-aws-lambda \
7+
--parameter-overrides GitHubOrg=awslabs RepositoryName=run-model-context-protocol-servers-with-aws-lambda \
88
--capabilities CAPABILITY_NAMED_IAM \
99
--region us-east-2
1010

e2e_tests/typescript/src/server_clients/lambda_function.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
LambdaFunctionParameters,
33
LambdaFunctionClientTransport,
4-
} from "mcp-server-in-aws-lambda";
4+
} from "mcp-server-with-aws-lambda";
55
import { Server } from "./server.js";
66
import logger from "../logger.js";
77

examples/chatbots/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ uvicorn>=0.32.1
44

55
# For testing, this module is installed from local files.
66
# Uncomment this line to build using the module from PyPi
7-
# mcp-server-in-aws-lambda >= 0.0.1
7+
# mcp-server-with-aws-lambda >= 0.0.1

0 commit comments

Comments
 (0)