package.json•1.89 kB
{
"name": "@thomaswalichiewicz/meshseeks-mcp-server",
"version": "1.1.1",
"description": "I'm MeshSeeks, look at me! 🟦 A multi-agent mesh network for parallel AI task completion",
"author": "Thomas Walichiewicz",
"license": "MIT",
"main": "dist/server.js",
"bin": {
"meshseeks": "dist/mesh-server.js",
"meshseeks-server": "dist/mesh-server.js"
},
"scripts": {
"build": "tsc",
"build:mesh": "tsc && cp .meshconfig dist/",
"start": "node dist/server.js",
"start:mesh": "node dist/mesh-server.js",
"dev": "tsx src/server.ts",
"dev:mesh": "tsx src/mesh-server.ts",
"test:mesh": "tsx src/test-mesh.ts",
"demo:status": "tsx src/demo-status-board.ts",
"test:all": "tsx src/tests/run-all-tests.ts",
"test:unit": "tsx src/tests/mesh-coordinator.test.ts",
"test:integration": "tsx src/tests/mesh-server.integration.test.ts",
"test:errors": "tsx src/tests/mesh-error-handling.test.ts",
"test:performance": "tsx src/tests/mesh-performance.test.ts"
},
"dependencies": {
"@eslint/js": "^9.26.0",
"@modelcontextprotocol/sdk": "^1.11.2",
"@modelcontextprotocol/server-brave-search": "^0.6.2",
"async-retry": "^1.3.3",
"server-perplexity-ask": "^0.1.3",
"zod": "^3.24.4"
},
"type": "module",
"devDependencies": {
"@types/async-retry": "^1.4.9",
"@types/node": "^22.15.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twalichiewicz/meshseeks.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"llm",
"tools",
"multi-agent",
"mesh-network",
"parallel-processing",
"agent-orchestration"
],
"bugs": {
"url": "https://github.com/twalichiewicz/meshseeks/issues"
},
"homepage": "https://github.com/twalichiewicz/meshseeks#readme"
}