package.json•1.1 kB
{
"name": "search-mcp",
"version": "1.0.0",
"description": "MCP aggregator that reduces AI client context consumption by 70-80%",
"main": "dist/index.js",
"type": "module",
"bin": {
"search-mcp": "./dist/cli.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"dev:node": "tsx src/index.ts",
"build": "bun build src/index.ts src/cli.ts --outdir dist --target node",
"build:binary": "bun build --compile src/index.ts --outfile search-mcp",
"build:node": "tsc",
"start": "bun run dist/index.js",
"start:node": "node dist/index.js",
"cli": "bun run src/cli.ts",
"test": "bun test",
"test:node": "npm run build:node && node dist/test.js"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"aggregator",
"context-reduction",
"ai",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "^5.9.3",
"tsx": "^4.20.6"
}
}