pocketbase-mcp-server
authenticate_user
Authenticate a user and get auth token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | User email | ||
password | Yes | User password |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "User email",
"type": "string"
},
"password": {
"description": "User password",
"type": "string"
}
},
"required": [
"email",
"password"
],
"type": "object"
}