Keycloak
STDIOKeycloak集成MCP服务器
Keycloak集成MCP服务器
A Model Context Protocol (MCP) server that provides programmatic access to Keycloak administration functionality.
The Keycloak MCP Server enables AI assistants and development tools to interact with Keycloak through the Model Context Protocol. It supports comprehensive Keycloak operations including user management, realm configuration, client administration, and authentication flow management.
docker run -d \ --name keycloak-mcp-server \ -p 8080:8080 \ -e KC_URL=https://keycloak.example.com \ -e KC_REALM=master \ -e OIDC_CLIENT_ID=mcp-server \ quay.io/sshaaf/keycloak-mcp-server:latest
Users authenticate with their own JWT tokens from Keycloak:
# Get your token ./scripts/get-mcp-token.sh \ --keycloak-url https://keycloak.example.com \ --username your-username \ --password your-password
Configure in your MCP client (~/.cursor/mcp.json):
{ "mcpServers": { "keycloak": { "transport": "sse", "url": "https://mcp-server.example.com/mcp/sse", "headers": { "Authorization": "Bearer <your-jwt-token>" } } } }
Complete documentation is available in the docs directory:
This project uses MkDocs for documentation. To build and serve locally:
pip install mkdocs-material mkdocs serve
Visit http://localhost:8000 to view the documentation.
Pre-built images are available on Quay.io:
docker pull quay.io/sshaaf/keycloak-mcp-server:latest
Images are automatically built and pushed on commits to main and on releases.
mvn clean package java -jar target/quarkus-app/quarkus-run.jar
mvn clean package -Pnative ./target/keycloak-mcp-server-runner
mvn clean package -Dquarkus.container-image.build=true
MIT License - see LICENSE file for details.
Contributions are welcome. See Contributors Guide for details.
Maintainer: Shaaf Syed
Repository: https://github.com/sshaaf/keycloak-mcp-server
Container Registry: https://quay.io/repository/sshaaf/keycloak-mcp-server