{
"name": "@odgrim/mcp-datetime",
"version": "0.2.0",
"description": "A TypeScript implementation of a simple MCP server that exposes datetime information to agentic systems and chat REPLs",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-datetime": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:sse": "node dist/index.js --sse",
"dev": "ts-node --esm src/index.ts",
"dev:sse": "ts-node --esm src/index.ts --sse",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"keywords": [
"mcp",
"datetime",
"timezone",
"model-context-protocol"
],
"author": "odgrim",
"license": "MPL-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"@types/express": "^5.0.0",
"express": "^4.21.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.16"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odgrim/mcp-datetime.git"
},
"bugs": {
"url": "https://github.com/odgrim/mcp-datetime/issues"
},
"homepage": "https://github.com/odgrim/mcp-datetime#readme"
}