# create-user

Create a new user in Descope project

Agent View of the PolicyLayer registry record for `create-user`. HTML page: https://policylayer.com/tools/descope-sample-apps-descope-mcp-server/create-user

## Facts

- Tool: `create-user`
- Server: Descope MCP Server (`descope-sample-apps/descope-mcp-server-stdio`) — https://policylayer.com/tools/descope-sample-apps-descope-mcp-server.md
- Homepage: https://github.com/descope-sample-apps/descope-mcp-server-stdio
- Risk category: Write (Medium risk)
- Registry record: grade B, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Rate-limited

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "create-user",
    "arguments": {}
  }
}
```

## Why create-user is rated Medium

This tool creates new user accounts, which is a reversible Write operation. While it modifies the authentication/user management system, it does not execute arbitrary code, delete data, or involve financial transactions. The severity is medium because creating unauthorized users could compromise security and access controls, but the action can be undone by deleting the user account.

From the tool's own definition: "Tool description states 'Create a new user in Descope project' — a creation action that modifies data by adding new user records to the system."

## Use case

AI agents use create-user to create or update resources in Descope MCP Server, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Descope MCP Server environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Descope MCP Server:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "create-user": {
      "limits": [
        {
          "counter": "create-user_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Descope MCP Server (3)

- `search-audits` — Read — https://policylayer.com/tools/descope-sample-apps-descope-mcp-server/search-audits.md
- `search-users` — Read — https://policylayer.com/tools/descope-sample-apps-descope-mcp-server/search-users.md
- `invite-user` — Write — https://policylayer.com/tools/descope-sample-apps-descope-mcp-server/invite-user.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=descope-sample-apps-descope-mcp-server · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/descope-sample-apps-descope-mcp-server
