package.json•1.2 kB
{
"name": "mcp-server-event-horizon",
"version": "1.0.0",
"description": "MCP server for Event Horizon evolutionary solution generation using genetic algorithms",
"license": "MIT",
"author": "themanaspandey",
"homepage": "https://github.com/manasp21/EventHorizon",
"repository": {
"type": "git",
"url": "https://github.com/manasp21/EventHorizon.git"
},
"bugs": "https://github.com/manasp21/EventHorizon/issues",
"keywords": [
"mcp",
"model-context-protocol",
"evolutionary-algorithm",
"genetic-algorithm",
"solution-generation",
"optimization",
"smithery",
"claude",
"ai-tools"
],
"type": "module",
"module": "./src/index.ts",
"main": "dist/index.js",
"bin": {
"mcp-server-event-horizon": "dist/index.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.5.0",
"chalk": "^5.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22",
"@types/yargs": "^17.0.32",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}