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
{
"name": "hello-mcp",
"version": "1.0.0",
"description": "Simple MCP server with Lambda deployment",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "npx fastmcp dev index.ts",
"build": "tsc",
"build:lambda": "tsc && cp package.json dist/",
"deploy": "npm run build:lambda && sam deploy",
"start": "tsx server.ts",
"start:prod": "npm run build && node dist/server.js",
"test:local": "npx @modelcontextprotocol/inspector inspector-config.json",
"test:fargate": "npx @modelcontextprotocol/inspector inspector-fargate-config.json"
},
"keywords": [
"mcp",
"fastmcp",
"lambda"
],
"license": "MIT",
"dependencies": {
"fastmcp": "latest",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.145",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}