Sytadel MCP Server
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., "@Sytadel MCP Servershow me all service accounts with idle days"
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.
@sytadel/mcp-server
Model Context Protocol server that exposes Sytadel identity + access primitives as tools consumable from Claude Desktop, Cursor, and any MCP-aware client.
Ships 5 tools out of the box:
Tool | Description |
| Memberships of the current tenant with role, active flag, passkey count, last login |
| Client apps + their service accounts with idle days and rotation state |
| Recent flagged logins (IP / country / device / score) |
| Compile natural-language RBAC intent → Sytadel PolicySet JSON |
| Trigger the AI-driven access review and return the full report |
Installation
git clone https://github.com/ElwinErnst/sytadel-mcp-server
cd sytadel-mcp-server
npm install
npm run buildRelated MCP server: Omada Identity MCP Server
Configuration
Auth has two modes — pick one depending on which tools you need:
User mode (recommended for operators)
Full role scope. Every admin-level tool (list_tenant_users, list_service_accounts, run_access_review) works.
export SYTADEL_TENANT_SLUG=your-tenant
export SYTADEL_USER_EMAIL=you@example.com
export SYTADEL_USER_PASSWORD=your-passwordService account mode
Restricted API_CLIENT scope. Read-only tools work (query_session_anomalies, generate_policy); admin tools return 403.
export SYTADEL_TENANT_SLUG=your-tenant
export SYTADEL_CLIENT_APP_ID=<uuid>
export SYTADEL_SERVICE_ACCOUNT_ID=<uuid>
export SYTADEL_SERVICE_ACCOUNT_SECRET=syt_...Endpoint URLs (optional overrides)
export SYTADEL_AUTH_API_URL=http://localhost:3002/api # default
export SYTADEL_ZT_API_URL=http://localhost:3010 # default
export SYTADEL_TIMEOUT_MS=60000 # default 60sWiring into Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sytadel": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"SYTADEL_AUTH_API_URL": "http://localhost:3002/api",
"SYTADEL_ZT_API_URL": "http://localhost:3010",
"SYTADEL_TENANT_SLUG": "your-tenant",
"SYTADEL_USER_EMAIL": "you@example.com",
"SYTADEL_USER_PASSWORD": "your-password"
}
}
}
}Restart Claude Desktop. The 5 tools appear in the tool picker.
Wiring into Cursor
Same shape, different path: ~/.cursor/mcp.json (or via Settings → MCP → Add).
Local sanity check
With the Sytadel stack running (docker compose up -d at the repo root):
npm run build
SYTADEL_TENANT_SLUG=sentinel-labs \
SYTADEL_USER_EMAIL=admin@test.com \
SYTADEL_USER_PASSWORD=123456 \
node dist/index.jsThe server logs starting stdio server: ... connected — awaiting MCP client and waits for JSON-RPC on stdin.
Design notes
No third-party HTTP library. Everything uses native
fetch+AbortController.Token cache with 60s early refresh and inflight-request coalescing so parallel tool calls share one auth handshake.
Logs to stderr only. stdout is reserved for JSON-RPC framing; any
console.logon stdout corrupts the protocol.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBquality-maintenanceAn MCP server that enables interaction with SailPoint IdentityNow and Identity Security Cloud for identity governance and access management. It provides comprehensive tools to manage identities, accounts, roles, workflows, and certifications through API integration.36
- Flicense-qualityFmaintenanceEnables interaction with Omada Identity Governance and Administration system for identity management, access requests, and compliance monitoring via MCP.1
- Alicense-qualityDmaintenanceProvides MCP tools to manage Microsoft Fabric capacities, including listing, creating, updating, and deleting them, using Azure authentication.MIT
- Alicense-qualityCmaintenanceEnables interaction with SentinelOne's security platform, including Purple AI, events, alerts, vulnerabilities, and asset inventory, through MCP.MIT
Related MCP Connectors
Remote MCP for A2A caller identity, scope policy, verdict receipts, and audit history.
Remote MCP for Copilot CLI switch gate MCP, structured receipts, audit logs, and reviewer-ready evid
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/ElwinErnst/sytadel-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server