Hello MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Hello MCP Serversay hello to my friend Alex"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hello MCP Server
Simple MCP (Model Context Protocol) server with AWS Lambda deployment.
๐ Quick Start
Local Development
npm install
npm run devConnect to Claude Desktop by adding to config:
{
"mcpServers": {
"hello-mcp": {
"command": "npx",
"args": ["tsx", "/Users/mingfang/Code/hello-mcp/index.ts"]
}
}
}Deploy to AWS Lambda
# Build and deploy
npm run deploy
# Or step by step
npm run build:lambda
sam deploy --guidedFirst time setup:
Stack Name:
hello-mcp-stackRegion:
ap-southeast-2Bearer Token:
mcp-secret-token-12345Confirm all:
Y
Related MCP server: Hello World MCP Server
๐ Authentication
Bearer token: mcp-secret-token-12345
Change it:
sam deploy --parameter-overrides BearerToken="your-new-token"๐งช Test Deployment
# Health check
curl https://gjt4ggcz76.execute-api.ap-southeast-2.amazonaws.com/health
# List available tools
curl -H "Authorization: Bearer mcp-secret-token-12345" \
https://gjt4ggcz76.execute-api.ap-southeast-2.amazonaws.com/mcp
# Call sayHello tool
curl -X POST \
-H "Authorization: Bearer mcp-secret-token-12345" \
-H "Content-Type: application/json" \
-d '{"tool": "sayHello", "params": {"name": "World"}}' \
https://gjt4ggcz76.execute-api.ap-southeast-2.amazonaws.com/mcp๐ Connect Claude to Lambda
Edit: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"hello-mcp-lambda": {
"url": "https://gjt4ggcz76.execute-api.ap-southeast-2.amazonaws.com/mcp",
"transport": "http",
"headers": {
"Authorization": "Bearer mcp-secret-token-12345"
}
}
}
}Important: Use "transport": "http" for Lambda.
๐ ๏ธ Tools
sayHello - Greet someone by name
๐ Deployment Record
Stack Name: hello-mcp-stack
Region: ap-southeast-2
Deployed: 2025-10-17
Status: โ
Tested and working
Outputs:
API URL:
https://gjt4ggcz76.execute-api.ap-southeast-2.amazonaws.com/Lambda ARN:
arn:aws:lambda:ap-southeast-2:670326884047:function:hello-mcp-serverAuthentication: Bearer token with 'http' transport
Test Results:
# โ
Health check working
# โ
Tool listing: ["sayHello"]
# โ
sayHello execution: "Hello, AWS Lambda! ๐"๐ Project Structure
hello-mcp/
โโโ index.ts # Local development (stdio)
โโโ lambda.ts # AWS Lambda handler
โโโ template.yaml # AWS SAM template
โโโ samconfig.toml # SAM configuration
โโโ package.json # Dependencies
โโโ tsconfig.json # TypeScript config๐ฐ Cost
Lambda free tier: 1M requests/month Expected cost: $0-5/month
๐ Learn More
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseDqualityDmaintenanceA simple demonstration MCP server that provides a greeting functionality when integrated with Gemini CLI.Last updated1MIT
- -license-quality-maintenanceA simple demonstration MCP server that provides basic greeting functionality and server information. Enables users to generate hello messages and retrieve server details through tools and resources.Last updated
- -licenseCquality-maintenanceA simple boilerplate MCP server that provides a basic greeting tool for demonstration purposes. Serves as a starting template for developers to quickly create and deploy custom MCP servers.Last updated114
- AlicenseCqualityDmaintenanceA simple MCP server that provides a basic greeting tool for saying hello with customizable names. Serves as a boilerplate template for developers to quickly create and deploy new MCP servers.Last updated114MIT
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mfang0126/ts-mcp-fargate-ecs-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server