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: Purple AI 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
Available Tools
5 toolsgenerate_policyA
Compile a natural-language RBAC intent (e.g. "OWNER can do anything, MEMBER can only GET /vaults, default deny") into a Sytadel PolicySet JSON. Returns policy, warnings, cost, tokens, latency. Read-only: the compiled policy is NOT applied — call PUT /policies/:tenantId separately to enforce it.
| Name | Required | Description | Default |
|---|---|---|---|
| intent | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states the read-only nature ('the compiled policy is NOT applied'), lists the return fields (policy, warnings, cost, tokens, latency), and points to the separate enforcement call. This goes well beyond minimal and fully informs the agent of side effects and results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, and every clause earns its place. It packs in the action, output, read-only caveat, and the next-step endpoint without any wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter compile tool with no output schema or annotations, the description is remarkably complete. It covers what it does, what it returns, that it's non-mutating, and how to actually enforce the result. No important aspect is left undisclosed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides only type and length constraints for the sole parameter 'intent', with 0% descriptive coverage. The description compensates fully by explaining what 'intent' means (natural-language RBAC intent) and giving concrete examples, making the parameter's semantics clear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Compile') and resource ('natural-language RBAC intent' into 'Sytadel PolicySet JSON'). This uniquely distinguishes it from sibling tools like query_session_anomalies or run_access_review, which serve wholly different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for use: compile intent into policy but not enforce it. It explicitly names the separate call (PUT /policies/:tenantId) needed to apply the policy, effectively explaining when to use this tool versus the enforcement step. However, it doesn't explicitly contrast with sibling tools, though those are unrelated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_service_accountsA
List service accounts (machine credentials) under every client app of the current tenant, with last-used timestamps and auto-rotation state. Useful for spotting dormant integrations.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the transparency burden. It discloses the operation (list), scope, and included fields, which implies a read-only behavior. However, it does not mention permissions, rate limits, or potential large result sets, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core action and scope. Every word adds value, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with no parameters and no output schema, the description covers the main output (service accounts with timestamps and rotation state) and a use case. It does not explicitly state the return format, but 'List' implies a list, making it sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, and the input schema is empty. With 0 parameters, the baseline is 4. The description correctly implies no user input is needed, so no further parameter explanation is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and identifies the resource ('service accounts') with precise scope ('under every client app of the current tenant') and additional details (last-used timestamps, auto-rotation state). This clearly distinguishes it from sibling tools like list_tenant_users or query_session_anomalies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides a clear use context ('Useful for spotting dormant integrations') but does not explicitly mention alternatives or when not to use the tool. While this is not as strong as naming sibling tools, the purpose is well implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tenant_usersA
List all users of the current Sytadel tenant with their role, active flag, passkey count, and last login. Useful for access reviews and off-boarding checks.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the output fields and implies a read-only operation via the verb 'List', but does not explicitly state side effects, authentication needs, or pagination. For a simple list tool, this is sufficient but not exhaustive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences efficiently convey the action, output, and use case. Every sentence adds value, and the description is front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description specifies the output fields and use cases, which is adequate for a simple, parameterless list tool. It does not mention pagination or limits, but the lack of output schema makes this acceptable. Slightly more detail on potential volume or filtering would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is empty with 100% coverage. Per the rubric, a baseline of 4 is appropriate since there are no parameter semantics to describe.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all users of the current tenant, specifying the exact output fields (role, active flag, passkey count, last login). This distinguishes it from siblings like list_service_accounts, which targets a different resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions it is useful for access reviews and off-boarding checks, providing clear context for when to use it. However, it does not explicitly mention alternatives or when not to use it, so it lacks exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
query_session_anomaliesA
Return recent session anomaly events (login from new IP / new country / new device / high score) for the calling user, up to limit rows. Ordered newest first.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full transparency burden. It discloses key behaviors: the result is scoped to the calling user, limited by `limit`, and ordered newest first. The term 'recent' is vague, and no response format is given, but for a simple read-only query this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the action, and every word adds value. It efficiently covers the resource, scope, limit, and ordering without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one optional parameter and no output schema, the description covers the essential semantics: what is returned, for whom, with a limit and ordering. It lacks specifics about the time window for 'recent' and the exact response structure, but given the simplicity, it is mostly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description is the only source explaining the `limit` parameter. It clearly states that the tool returns 'up to `limit` rows', giving explicit meaning to the parameter beyond its type and bounds.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Return'), identifies the resource as 'session anomaly events', enumerates the event types, and scopes it to 'the calling user'. It is easily distinguishable from sibling tools like generate_policy or list_tenant_users.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: to fetch recent session anomalies for the current user. It implies a security monitoring use case, but it does not explicitly mention exclusions or alternatives among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
run_access_reviewA
Trigger an on-demand AI-driven access review for the current tenant. Claude reviews users, service accounts and recent anomalies, and returns a markdown report plus a machine-readable list of recommendations (revoke, downgrade, disable_service_account, rotate_service_account_secret, delete_passkey, require_password_reset, review_manually).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden. It reveals that the tool performs a review and returns a markdown report plus recommendations, with the recommendation types explicitly listed, implying it does not directly execute changes. It does not mention permissions or rate limits, but the read-only nature is implied by the review-and-recommendation flow.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the action and includes specific output details and recommendation types without any redundant content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and no output schema, the description provides sufficient context: it states the process, the scope, and the output format. The enumerated recommendation types provide valuable detail for an agent to handle the response, making the description complete for this tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is trivial. The description adds meaningful context by specifying the scope ('for the current tenant'), which clarifies what the operation applies to, though it does not need to explain any inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool triggers an on-demand AI-driven access review for the current tenant, with a specific verb and scope. It also enumerates the review targets (users, service accounts, anomalies) and outputs, distinguishing it from sibling tools like query_session_anomalies or list_tenant_users, which focus on narrower tasks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by describing it as an on-demand review for the current tenant, suggesting it is appropriate for comprehensive access evaluations. However, it does not explicitly compare to sibling tools or state when not to use it, leaving some ambiguity about alternative tools for specific queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
v0.1.0- First observed
generate_policy - First observed
list_service_accounts - First observed
list_tenant_users - First observed
query_session_anomalies - First observed
run_access_review
TDQS
Scored across 5 tools
Each tool targets a distinct resource and action: session anomalies, policy compilation, access reviews, user listing, and service account listing. There is no overlap or ambiguity between these functions.
All tool names use snake_case and a verb-object structure, but the verbs vary (list, query, generate, run). Two tools share the list prefix, but the inconsistent verbs prevent a perfect score.
Five tools is well-scoped for a server focused on access review and policy generation. Each tool addresses a key workflow without unnecessary bloat.
The set covers data retrieval (users, service accounts, anomalies) and generates policies/reviews. However, there is no tool to apply policies or act on review recommendations, creating a notable gap in the full lifecycle.
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 Connectors
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
Remote MCP for A2A caller identity, scope policy, verdict receipts, and audit history.
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Authenticated MCP server for ClearPolicy policy and compliance workflows.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceEnables interaction with Omada Identity Governance and Administration system for identity management, access requests, and compliance monitoring via MCP.1-
- AlicenseNot gradedqualityCmaintenanceEnables interaction with SentinelOne's security platform, including Purple AI, events, alerts, vulnerabilities, and asset inventory, through MCP.MIT
- AlicenseAqualityCmaintenanceEnables policy-first defensive security operations for MCP, providing repository and web-security analysis with controlled authorization, scoped execution, and auditability.9MIT
- AlicenseAqualityAmaintenanceEnables management of Scaleway IAM (applications, API keys, policies, permission sets) and Object Storage bucket policies through an MCP server.11716MIT