updateDomains
Manage allowlisted domains for a user by updating the list of approved domains for secure API access within the Pollinations Multimodal MCP Server.
Instructions
Update domains allowlisted for a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domains | Yes | The domains to allowlist | |
sessionId | Yes | The session ID for authentication | |
userId | Yes | The GitHub user ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"domains": {
"description": "The domains to allowlist",
"items": {
"type": "string"
},
"type": "array"
},
"sessionId": {
"description": "The session ID for authentication",
"type": "string"
},
"userId": {
"description": "The GitHub user ID",
"type": "string"
}
},
"required": [
"userId",
"domains",
"sessionId"
],
"type": "object"
}