package.json•682 B
{
"name": "time-mcp-server",
"version": "0.1.0",
"description": "MCP server that provides current time information",
"type": "module",
"main": "dist/index.js",
"bin": {
"time-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "echo '{\"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/list\"}' | node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": ["mcp", "time", "server"],
"author": "Your Name",
"license": "MIT"
}