{
"name": "mcp-batchit",
"version": "1.0.0",
"description": "Batch multiple MCP tool calls into a single request—reducing overhead and token usage for AI agents",
"main": "build/index.js",
"type": "module",
"types": "build/index.d.ts",
"bin": {
"mcp-batchit": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"clean": "rimraf build"
},
"config": {
"run-script": {
"build": "npm run build"
}
},
"keywords": [
"mcp",
"modelcontextprotocol",
"batch",
"operations",
"ai",
"llm",
"agent",
"filesystem",
"aggregator"
],
"author": "Ryan Joachim",
"repository": {
"type": "git",
"url": "https://github.com/ryanjoachim/mcp-batchit.git"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^22.8.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}