@gork-labs/secondbrain-mcp
Version:
Second Brain MCP Server - Agent team orchestration with dynamic tool discovery
74 lines (73 loc) • 2.23 kB
JSON
{
"name": "@gork-labs/secondbrain-mcp",
"version": "0.23.0",
"description": "Second Brain MCP Server - Agent team orchestration with dynamic tool discovery",
"main": "dist/index.js",
"bin": {
"secondbrain-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && npm run copy-instructions && npm run copy-templates",
"compose-subagents": "echo 'Skipping compose-subagents - using optimized lean versions'",
"copy-instructions": "mkdir -p instructions && cp ../../.github/instructions/*.instructions.md instructions/",
"copy-templates": "mkdir -p templates && cp src/templates/*.template templates/",
"clean": "rm -rf dist subagents instructions templates",
"dev": "tsc --watch",
"prebuild": "npm run clean",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"docker:build": "docker build -t secondbrain-mcp .",
"docker:run": "docker run -p 3000:3000 secondbrain-mcp",
"security:audit": "npm audit --audit-level=moderate"
},
"keywords": [
"mcp",
"model-context-protocol",
"agent-orchestration",
"multi-agent",
"delegation",
"subagents",
"gorka"
],
"author": "Bohdan Shulha <bv.shulha@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gork-labs/gorka.git",
"directory": "servers/secondbrain-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0",
"openai": "^4.0.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/mustache": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"subagents/",
"instructions/",
"templates/"
]
}