package.json•1.27 kB
{
"name": "@tiangong-ai/mcp-server-local",
"version": "0.0.4",
"description": "TianGong AI MCP Local Server",
"license": "MIT",
"author": "Nan LI",
"type": "module",
"bin": {
"tiangong-ai-mcp-http": "dist/src/index_server.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && shx chmod +x dist/src/*.js",
"start": "npm run build && npx dotenv -e .env -- npx @modelcontextprotocol/inspector node dist/src/index.js",
"start:server": "npm run build && concurrently \"npx dotenv -e .env -- node dist/src/index_server.js\" \"DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector\"",
"lint": "prettier -c --write \"**/**.{js,jsx,tsx,ts,less,md,json}\"",
"ncu": "npx npm-check-updates",
"ncu:update": "npx npm-check-updates -u"
},
"dependencies": {
"@types/express": "^5.0.3",
"@langchain/langgraph": "^0.4.9",
"@modelcontextprotocol/sdk": "^1.18.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.8",
"dotenv-cli": "^10.0.0",
"npm-check-updates": "^18.3.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"shx": "^0.4.0",
"typescript": "^5.9.2"
}
}