package.json•768 B
{
"name": "@search-intent/mcp",
"version": "1.1.0",
"description": "MCP Demo Server",
"type": "module",
"bin": {
"search-intent-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"debug": "tsc && node --inspect dist/index.js",
"prepublishOnly": "pnpm build"
},
"keywords": [
"mcp",
"search-intent",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"node-fetch": "^3.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.14",
"typescript": "^5.8.2"
}
}