TS MCP Fargate ECS Starter

Provides a simple MCP server to connect Claude with AWS Lambda deployment and local development for quick tool access.
  • typescript

0

GitHub Stars

typescript

Language

7 months ago

First Indexed

3 months ago

Catalog Refreshed

Documentation & install

Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.

Installation

Add the following to your MCP client configuration file.

Configuration

View docs

You run a compact MCP server that lets Claude connect to your application either locally or via AWS Lambda. This guide shows practical steps to run, deploy, and securely use the MCP server so Claude can discover tools like sayHello and invoke them with parameters.

How to use

You connect an MCP client to the server either through a local stdio flow or via HTTP when deployed to AWS Lambda. For local development, you run the server in the background and point your MCP client to the local development interface. For production, you deploy the server to AWS Lambda and configure your MCP client to reach the Lambda endpoint using the provided API URL and authentication token.

How to install

Prerequisites: you need Node.js and npm installed on your machine.

  1. Install dependencies for the project.

  2. Run the development server locally.

  3. Deploy the server to AWS Lambda and configure access.

npm install
npm run dev
{
  "mcpServers": {
    "hello_mcp": {
      "command": "npx",
      "args": ["tsx", "/Users/mingfang/Code/hello-mcp/index.ts"]
    }
  }
}

Configuration and usage notes

Two connection methods are shown: a local stdio flow for development and an HTTP flow for production when deployed to AWS Lambda. The Lambda endpoint requires an Authorization header bearing a token.

Additional sections

Tools available in this server include the sayHello function, which greets a provided name.

You can test the deployment by checking the health endpoint and calling the sayHello tool through the MCP API when the Lambda deployment is active.

Available tools

sayHello

Greet someone by name using the MCP tool interface. This tool returns a personalized greeting.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
TS MCP Fargate ECS Starter MCP Server - mfang0126/ts-mcp-fargate-ecs-starter | VeilStrat