{ "name": "@n0zer0d4y/athena-protocol", "version": "0.2.0", "description": "An intelligent MCP server that acts as an AI tech lead for coding agents—providing expert validation, impact analysis, and strategic guidance before code changes are made", "license": "MIT", "author": "Lloyd Barcatan", "homepage": "https://github.com/n0zer0d4y/athena-protocol", "repository": { "type": "git", "url": "git+https://github.com/n0zer0d4y/athena-protocol.git" }, "mcpName": "io.github.n0zer0d4y/athena-protocol", "publishConfig": { "access": "public" }, "bugs": { "url": "https://github.com/n0zer0d4y/athena-protocol/issues" }, "type": "module", "main": "dist/index.js", "bin": { "athena-protocol": "dist/index.js" }, "files": [ "dist/**/*.js", "README.md", "LICENSE" ], "scripts": { "prepare": "npm run build", "prepublishOnly": "npm test", "build": "tsc", "start": "node dist/index.js", "start:standalone": "node dist/standalone-server.js", "dev": "tsx watch src/index.ts", "dev:standalone": "tsx watch src/standalone-server.ts", "lint": "eslint src", "clean": "rm -rf dist", "test": "npm run test:thinking && npm run test:tools", "test:thinking": "node tests/simple-thinking-test.js", "test:tools": "node tests/test-all-tools.js", "test:integration": "node tests/test-integration.js", "test:mcp": "node tests/test-mcp-thinking-validation.js", "test:all": "npm run test:thinking && npm run test:tools && npm run test:integration && npm run test:mcp", "validate-config": "node validate-config.js" }, "dependencies": { "@ai-sdk/amazon-bedrock": "^3.0.48", "@ai-sdk/anthropic": "^2.0.53", "@ai-sdk/azure": "^2.0.57", "@ai-sdk/google": "^2.0.43", "@ai-sdk/google-vertex": "^3.0.86", "@ai-sdk/groq": "^2.0.27", "@ai-sdk/mistral": "^2.0.14", "@ai-sdk/openai": "^2.0.77", "@ai-sdk/perplexity": "^2.0.9", "@ai-sdk/xai": "^2.0.30", "@aws-sdk/credential-providers": "^3.940.0", "@modelcontextprotocol/sdk": "^1.24.0", "@openrouter/ai-sdk-provider": "^1.2.0", "@z_ai/mcp-server": "^0.0.13", "ai": "^5.0.102", "dotenv": "^17.2.2", "express": "^5.2.0", "fastmcp": "^3.22.0", "jsonc-parser": "^3.3.1", "jsonrepair": "^3.13.0", "ollama-ai-provider": "^1.2.0", "p-limit": "^6.1.0", "ts-node": "^10.9.2", "undici": "^6.19.8", "uuid": "^11.1.0", "zod": "^3.23.8" }, "devDependencies": { "@types/express": "^4.17.21", "@types/glob": "^8.1.0", "@types/node": "^20.0.0", "@types/uuid": "^10.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.0.0", "tsx": "^4.20.3", "typescript": "^5.0.0" }, "engines": { "node": ">=20.0.0" }, "keywords": [ "mcp", "mcp-server", "model-context-protocol", "athena-protocol", "ai", "llm", "ai-agent", "coding-assistant", "thinking-validation", "code-review", "impact-analysis", "claude", "openai", "anthropic", "development-tools" ] }