auth_refresh
Refresh authentication tokens to maintain secure access to PocketBase databases, preventing session expiration and ensuring continuous data operations.
Instructions
Refresh authentication token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection name (default: users) | users |
Implementation Reference
- src/index.ts:382-395 (registration)Registration of the 'auth_refresh' tool in the ListToolsRequestSchema handler, including name, description, and inputSchema. Note: No specific handler implementation found in the CallToolRequestSchema switch statement.{ name: 'auth_refresh', description: 'Refresh authentication token', inputSchema: { type: 'object', properties: { collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } } }, },