netlify-user-services
Retrieve user data from Netlify by executing the 'get-user' operation through the Model Context Protocol, enabling integration with code agents for automating user management tasks.
Instructions
Select and run one of the following Netlify operations get-user
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| selectSchema | Yes | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "selectSchema": {
      "additionalProperties": false,
      "properties": {
        "aiAgentName": {
          "type": "string"
        },
        "llmModelName": {
          "type": "string"
        },
        "operation": {
          "const": "get-user",
          "type": "string"
        },
        "params": {
          "additionalProperties": false,
          "properties": {},
          "type": "object"
        }
      },
      "required": [
        "operation",
        "params"
      ],
      "type": "object"
    }
  },
  "required": [
    "selectSchema"
  ],
  "type": "object"
}