mcp-freeipa
Manages FreeIPA/Red Hat IdM identities including users, groups, hosts, DNS, sudo rules, and HBAC rules through the FreeIPA JSON-RPC API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-freeipalist all users"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-freeipa
MCP server for FreeIPA / Red Hat IdM — user, group, host, DNS, HBAC, and sudo management via the Model Context Protocol.
Features
Users — list, get, create, enable, disable, delete, and reset passwords
Groups — list, get, and manage group memberships
Hosts — list and inspect enrolled hosts
DNS — list zones, list and get records (A, AAAA, CNAME, MX, PTR, TXT, SRV, …)
Sudo rules — list and inspect sudo policy rules
HBAC rules — list and inspect host-based access control rules
Related MCP server: IPA MCP Server
Requirements
FreeIPA 4.6+ or Red Hat IdM 7.6+ (any modern version with the JSON-RPC API)
Node.js 18+
An admin account or a dedicated service account with read access to the relevant objects
FreeIPA permissions
The minimum required privileges depend on which tools you use:
Area | Required privilege |
Users |
|
Groups |
|
Hosts |
|
DNS |
|
Sudo |
|
HBAC |
|
For read-only usage, you can create a dedicated service account and grant it only the System: Read * permissions via an RBAC role.
Environment variables
Variable | Required | Default | Description |
| Yes | — | FreeIPA server hostname (e.g. |
| Yes | — | Password for the FreeIPA account |
| No |
| FreeIPA account username |
| No |
| Allow self-signed TLS certificates ( |
Installation
npm install
npm run buildClaude Desktop configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"freeipa": {
"command": "node",
"args": ["/absolute/path/to/mcp-freeipa/dist/index.js"],
"env": {
"FREEIPA_HOST": "ipa.example.com",
"FREEIPA_USERNAME": "admin",
"FREEIPA_PASSWORD": "your-password-here",
"FREEIPA_ALLOW_SELF_SIGNED": "true"
}
}
}
}If you have installed the package globally via npm install -g mcp-freeipa:
{
"mcpServers": {
"freeipa": {
"command": "mcp-freeipa",
"env": {
"FREEIPA_HOST": "ipa.example.com",
"FREEIPA_USERNAME": "admin",
"FREEIPA_PASSWORD": "your-password-here"
}
}
}
}Available tools
Users
Tool | Description |
| List users, with optional uid / cn / mail filters |
| Get full details for a user by UID |
| Enable a disabled user account |
| Disable (lock) a user account |
| Create a new user account |
| Permanently delete a user account |
| Reset a user's password |
Groups
Tool | Description |
| List groups with optional name filter |
| Get full details for a group by name |
| Add one or more users to a group |
| Remove one or more users from a group |
Hosts
Tool | Description |
| List enrolled hosts with optional FQDN filter |
| Get full details for a host by FQDN |
DNS
Tool | Description |
| List all DNS zones |
| List all records in a DNS zone |
| Get all record types for a specific name in a zone |
Sudo
Tool | Description |
| List all sudo rules |
| Get full details of a sudo rule |
HBAC
Tool | Description |
| List all host-based access control rules |
| Get full details of an HBAC rule |
FreeIPA API notes
The server uses the FreeIPA JSON-RPC API (/ipa/session/json). It authenticates with a username and password via form-encoded login (/ipa/session/login_password) and stores the resulting ipa_session cookie for all subsequent requests. The session cookie is refreshed automatically on expiry (HTTP 401).
FreeIPA returns all attribute values as arrays even for scalar fields (e.g., {"uid": ["john"]}). The server normalises these automatically, extracting the first element for scalar fields and preserving full arrays for list fields such as memberof_group.
Development
npm run dev # run with tsx (no build step)
npm run build # compile TypeScript to dist/
npm start # run compiled outputLicense
See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fredriksknese/mcp-freeipa'
If you have feedback or need assistance with the MCP directory API, please join our Discord server