list_auth_methods
Retrieve available authentication methods for a PocketBase collection to configure user login options and security settings.
Instructions
List all available authentication methods
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection name (default: users) | users |
Implementation Reference
- src/index.ts:290-302 (schema)Input schema for the 'list_auth_methods' tool, defining an optional 'collection' parameter defaulting to 'users'. This is part of the tools array registered with the MCP server.{ name: 'list_auth_methods', description: 'List all available authentication methods', inputSchema: { type: 'object', properties: { collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } } }
- src/index.ts:665-666 (registration)The closing of the tools array passed to this.server.setTools, registering all tools including 'list_auth_methods' with the MCP server.], }));