Okta
БесплатноНе проверенA production-ready MCP server for Identity and Access Management with Okta integration, providing user and group management, audit logging, and permission guard
Описание
A production-ready MCP server for Identity and Access Management with Okta integration, providing user and group management, audit logging, and permission guardrails.
README
A production-ready Model Context Protocol (MCP) Server for Identity and Access Management solutions. Currently supports Okta with an extensible architecture for Azure ENTRA ID, Google Workspace, and more.
Features
- 🔐 Okta Integration - Full user and group management
- 📝 Audit Logging - Real-time operation tracking
- 🛡️ Permission Guardrails - Three-tier access control (admin/operator/viewer)
- 💾 Local Database - SQLite for audit trails and user caching
- ⚡ Async Support - Built for performance
- 📊 Web Dashboard - Flask-based management UI
- 🔄 SCIM Support - SCIM 2.0 provisioning server
📁 Project Structure
MCP_Final/
├── README.md # This file
├── requirements.txt # Python dependencies
├── run_mcp.bat # Quick start script
│
├── config/ # 📋 Configuration files
│ ├── .env.example # Environment template
│ ├── tenants.yaml # Tenant configurations
│ └── tenants.yaml.example # Tenant template
│
├── docs/ # 📚 Documentation
│ ├── ARCHITECTURE.md # System architecture
│ └── NGROK_SETUP.md # Ngrok setup guide
│
├── scripts/ # 🔧 Utility scripts
│ ├── migrations/ # Database migrations
│ ├── testing/ # Test utilities
│ └── utils/ # General utilities
│
├── src/ # 🎯 Core MCP server
├── scim/ # 🔐 SCIM 2.0 server
├── dashboard/ # 📊 Web dashboard
└── data/ # 💾 Database files
Quick Start
1. Install Dependencies
pip install -r requirements.txt
2. Configure Environment
# Copy example environment file
cp config/.env.example .env
# Edit .env with your credentials
notepad .env
3. Configure Tenants
# Copy tenant example
cp config/tenants.yaml.example config/tenants.yaml
# Edit with your Okta details
notepad config/tenants.yaml
4. Initialize Database
python -m src.database.init
5. Run the Server
# Quick start
run_mcp.bat
# Or manually
python -m src.server
Configuration
Configuration files are located in the config/ directory. See config/README.md for details.
Environment Variables (.env)
| Variable | Description | Required |
|---|---|---|
OIDC_CLIENT_ID |
OAuth client ID | Yes |
OIDC_CLIENT_SECRET |
OAuth client secret | Yes |
OIDC_DISCOVERY_URL |
OIDC discovery endpoint | Yes |
SECRET_KEY |
Flask session secret | Yes |
DATABASE_URL |
SQLite database path | No (default: ./data/mcp_server.db) |
LOG_LEVEL |
Logging verbosity | No (default: INFO) |
Tenant Configuration (config/tenants.yaml)
Configure multiple Okta tenants. See config/README.md for format.
Available MCP Tools
User Management
list_okta_users- List all users with optional filtersget_okta_user- Get user by ID or emailcreate_okta_user- Create new userupdate_okta_user- Update user profiledelete_okta_user- Deactivate/delete user (admin only)suspend_okta_user/unsuspend_okta_user- Manage user status
Group Management
list_okta_groups- List all groupsget_okta_group- Get group detailscreate_okta_group- Create new groupdelete_okta_group- Delete group (admin only)list_group_members- List users in a groupadd_user_to_group/remove_user_from_group- Manage membership
Audit Tools
query_audit_logs- Search audit historyget_user_audit_trail- User-specific activityexport_audit_report- Generate reports
Permission Levels
| Level | Read | Create | Update | Delete |
|---|---|---|---|---|
| Viewer | ✅ | ❌ | ❌ | ❌ |
| Operator | ✅ | ✅ | ✅ | ❌ |
| Admin | ✅ | ✅ | ✅ | ✅ |
Claude Desktop Integration
Add to your Claude Desktop config (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"iam-okta": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "C:\\path\\to\\MCP_Final"
}
}
}
Components
Core MCP Server (src/)
Main Model Context Protocol server providing Okta integration tools.
SCIM Server (scim/)
SCIM 2.0 provisioning server for automated user/group management.
Dashboard (dashboard/)
Web-based management UI with user administration, audit logs, and monitoring. See dashboard/README.md.
Utilities & Scripts
All utility scripts are in the scripts/ directory:
- Migrations:
scripts/migrations/- Database migration scripts - Testing:
scripts/testing/- Test utilities - Utils:
scripts/utils/- General utilities
See scripts/README.md for details.
Documentation
Complete documentation is in the docs/ directory:
- ARCHITECTURE.md - System architecture
- NGROK_SETUP.md - Ngrok configuration
See docs/README.md for the full documentation index.
License
MIT License
Установка Okta
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/vaibhavGoyal1096/Okta-MCPFAQ
Okta MCP бесплатный?
Да, Okta MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Okta?
Нет, Okta работает без API-ключей и переменных окружения.
Okta — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Okta в Claude Desktop, Claude Code или Cursor?
Открой Okta на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Okta with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
