package.jsonā¢1.75 kB
{
"name": "mcp-hello-world",
"version": "0.1.0",
"description": "A minimal MCP server that responds with 'Hello, World' via Streamable HTTP",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && cp package.json dist/",
"start": "node dist/index.js",
"test": "vitest --coverage",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"docker:build": "docker build -t mcp-hello-world .",
"docker:run": "docker run -p 8080:8080 mcp-hello-world"
},
"keywords": [
"mcp",
"model-context-protocol",
"hello-world",
"typescript",
"fastify",
"streamable-http"
],
"author": "Paul",
"license": "Apache-2.0",
"dependencies": {
"fastify": "^4.28.1",
"@fastify/cors": "^9.0.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/helmet": "^11.1.1",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.4",
"tsx": "^4.17.0",
"vitest": "^2.0.5",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"prettier": "^3.3.3",
"@types/supertest": "^6.0.2",
"supertest": "^7.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/MillCityAI/mcp-hello-world"
},
"bugs": {
"url": "https://github.com/MillCityAI/mcp-hello-world/issues"
},
"homepage": "https://github.com/MillCityAI/mcp-hello-world#readme"
}