package.json•1.72 kB
{
"name": "@cdmx/authentik-diag-mcp",
"version": "0.1.1",
"description": "MCP server for Authentik API with diagnostic and read-only capabilities",
"type": "module",
"main": "dist/index.js",
"bin": {
"authentik-diag-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"authentik",
"mcp",
"model-context-protocol",
"authentication",
"identity",
"api",
"server",
"diagnostic",
"monitoring"
],
"author": "Authentik MCP <hello@goauthentik.io>",
"license": "MIT",
"homepage": "https://github.com/goauthentik/authentik-diag-mcp",
"repository": {
"type": "git",
"url": "https://github.com/goauthentik/authentik-diag-mcp.git"
},
"bugs": {
"url": "https://github.com/goauthentik/authentik-diag-mcp/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.9",
"commander": "^14.0.0",
"zod": "^3.25.71"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^22.10.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^30.0.4",
"prettier": "^3.4.2",
"tsx": "^4.19.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.35.1"
},
"publishConfig": {
"access": "public"
}
}