mcp-keycloak-admin 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "mcp-keycloak-admin",
3
+ "version": "0.1.0",
4
+ "description": "Model Context Protocol server to administer Keycloak through its Admin REST API",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/mrz1880/mcp-keycloak-admin.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/mrz1880/mcp-keycloak-admin/issues"
13
+ },
14
+ "homepage": "https://github.com/mrz1880/mcp-keycloak-admin#readme",
15
+ "bin": {
16
+ "mcp-keycloak-admin": "dist/index.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "engines": {
24
+ "node": ">=20"
25
+ },
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:coverage": "vitest run --coverage",
31
+ "test:integration": "vitest run --config vitest.integration.config.ts",
32
+ "typecheck": "tsc --noEmit",
33
+ "lint": "eslint .",
34
+ "lint:fix": "eslint . --fix",
35
+ "format": "prettier --write .",
36
+ "format:check": "prettier --check .",
37
+ "check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
38
+ "prepare": "husky",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "keywords": [
42
+ "mcp",
43
+ "model-context-protocol",
44
+ "keycloak",
45
+ "admin",
46
+ "iam",
47
+ "identity"
48
+ ],
49
+ "lint-staged": {
50
+ "*.{ts,js}": [
51
+ "eslint --fix",
52
+ "prettier --write"
53
+ ],
54
+ "*.{json,md,yml,yaml}": [
55
+ "prettier --write"
56
+ ]
57
+ },
58
+ "dependencies": {
59
+ "@modelcontextprotocol/sdk": "^1.29.0",
60
+ "zod": "^4.4.3"
61
+ },
62
+ "devDependencies": {
63
+ "@commitlint/cli": "^21.0.2",
64
+ "@commitlint/config-conventional": "^21.0.2",
65
+ "@eslint/js": "^10.0.1",
66
+ "@types/node": "^26.0.0",
67
+ "@vitest/coverage-v8": "^4.1.9",
68
+ "eslint": "^10.5.0",
69
+ "eslint-config-prettier": "^10.1.8",
70
+ "eslint-plugin-boundaries": "^6.0.2",
71
+ "globals": "^17.7.0",
72
+ "husky": "^9.1.7",
73
+ "lint-staged": "^17.0.8",
74
+ "prettier": "^3.8.4",
75
+ "testcontainers": "^12.0.3",
76
+ "tsup": "^8.5.1",
77
+ "typescript": "^6.0.3",
78
+ "typescript-eslint": "^8.62.0",
79
+ "vitest": "^4.1.9"
80
+ }
81
+ }