A containerized version of "Keycloak MCP Server"
Repository: ChristophEnglisch/keycloak-model-context-protocol
A Model Context Protocol server for Keycloak administration, providing tools to manage users and realms.
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--christophenglisch--keycloak-model-context-protocol--keycloak-model-context-protocol
- Run the container:
docker run -i --rm \
-e KEYCLOAK_URL=keycloak-url -e KEYCLOAK_ADMIN=keycloak-admin \
ghcr.io/metorial/mcp-container--christophenglisch--keycloak-model-context-protocol--keycloak-model-context-protocol "node ./dist/index.js"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
The container supports the following configuration options:
KEYCLOAK_URL
KEYCLOAK_ADMIN
{
"mcpServers": {
"keycloak-model-context-protocol": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--christophenglisch--keycloak-model-context-protocol--keycloak-model-context-protocol",
"node ./dist/index.js"
],
"env": {
"KEYCLOAK_URL": "keycloak-url",
"KEYCLOAK_ADMIN": "keycloak-admin"
}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial