UNPKG

roundhr-mcp-server

Version:

MCP server for RoundHR database tools

60 lines (59 loc) 1.79 kB
{ "name": "roundhr-mcp-server", "version": "0.0.20", "description": "MCP server for RoundHR database tools", "main": "dist/index.js", "module": "./src/index.ts", "type": "module", "types": "dist/index.d.ts", "files": [ "dist" ], "bin": { "roundhr-mcp-server": "dist/index.js" }, "scripts": { "prebuild": "npx shx rm -rf dist", "build": "npm run build:tsc", "build:tsc": "tsc", "build:bundle": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --format=esm --external:@modelcontextprotocol/sdk --external:express --external:cors --external:node-fetch --external:zod --external:zod-to-json-schema --external:axios", "build:bundle:minify": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --format=esm --minify --external:@modelcontextprotocol/sdk --external:express --external:cors --external:node-fetch --external:zod --external:zod-to-json-schema --external:axios", "build:smithery": "npx @smithery/cli build", "prepare": "npm run build", "start": "node dist/index.js", "dev:smithery": "npx @smithery/cli dev", "dev": "tsc --watch" }, "keywords": [ "mcp", "round", "roundhr", "라운드", "라운드HR", "채용", "데이터 분석", "ATS", "채용 관리 솔루션" ], "engines": { "node": ">=18" }, "author": "jay", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.17.1", "axios": "^1.6.7", "zod": "^3.25.46", "zod-to-json-schema": "^3.23.0", "node-fetch": "^3.3.2", "express": "^4.18.2", "cors": "^2.8.5" }, "devDependencies": { "@types/node": "^20.0.0", "esbuild": "^0.19.0", "shx": "^0.3.4", "tsx": "^4.19.4", "typescript": "^5.3.3" } }