package.json•2.5 kB
{
"name": "brainloop-mcp-server",
"version": "2.0.0",
"description": "BRAINLOOP MCP server with OAuth 2.1 authentication for personalized learning data access. Built on proven MCP implementation with TypeScript and production-ready architecture.",
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"bin": {
"brainloop-mcp-server": "build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE",
".env.example"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc && tsc-alias && chmod +x build/index.js && echo \"export * from './config.js';\nexport * from './oauth.js';\nexport * from './mcp.js';\nexport * from './auth-store.js';\nexport * from './types.js';\" > build/server/index.js",
"start": "npm run build && node build/index.js",
"dev": "npm run build && node build/index.js",
"watch": "tsc --watch",
"docker": "docker-compose build && docker-compose up -d",
"test": "cd e2e-test && npm test",
"inspector": "npx @modelcontextprotocol/inspector",
"e2e": "cd e2e-test && npm install && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozipi/brainloop-mcp-server-v2.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"ajv-formats": "^3.0.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jose": "^6.0.11",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.15.32",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"prettier": "^3.5.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"keywords": [
"brainloop",
"mcp",
"model-context-protocol",
"mcp-server",
"typescript",
"type-safe",
"oauth2",
"learning",
"education",
"claude",
"ai"
],
"author": "BRAINLOOP",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozipi/brainloop-mcp-server-v2/issues"
},
"homepage": "https://brainloop.cc",
"engines": {
"node": ">=18.0.0"
}
}