Files
bifrost/examples/mcps/temperature/package.json
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

24 lines
540 B
JSON

{
"name": "temperature-mcp-server",
"version": "1.0.0",
"description": "A simple MCP server that provides temperature information for popular locations",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"overrides": {
"hono": "4.12.14"
}
}