list_auth_methods
Retrieve all available authentication methods for a specified collection in PocketBase MCP Server to simplify access and user management.
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-303 (registration)Registration of the 'list_auth_methods' tool in the MCP server.tools.add array, including its input schema definition. No handler function is implemented for this tool.{ 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:293-302 (schema)Input schema for the 'list_auth_methods' tool, specifying optional collection parameter.inputSchema: { type: 'object', properties: { collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } } }