package.json•758 B
{
"name": "my-mcp-server",
"version": "0.0.1",
"description": "my-mcp-server MCP server",
"type": "module",
"bin": {
"my-mcp-server": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && mcp-build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsc && mcp-build && node dist/index.js",
"test": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"dependencies": {
"axios": "^1.10.0",
"dotenv": "^17.0.0",
"mcp-framework": "^0.2.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.19.0"
}
}