package.json•1.01 kB
{
"name": "@yc-hackathon/hf-mcp",
"version": "0.1.0",
"description": "A Model Context Protocol server for Hugging Face Hub API",
"private": false,
"type": "module",
"bin": {
"hf-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js --port 3003",
"dev:stdio": "tsx src/index.ts",
"dev:shttp": "tsx src/index.ts --port 3003",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
},
"keywords": [
"mcp",
"huggingface",
"hub-api",
"models",
"datasets"
],
"author": {
"name": "YC Hackathon Team"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"axios": "^1.11.0",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^24.2.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}