auth_refresh
Refresh authentication tokens for specified collections to maintain secure access in PocketBase MCP Server, ensuring continuous user session integrity.
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 input schema definition.{ name: 'auth_refresh', description: 'Refresh authentication token', inputSchema: { type: 'object', properties: { collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } } }, },
- src/index.ts:385-394 (schema)Input schema for the 'auth_refresh' tool, defining optional collection parameter.inputSchema: { type: 'object', properties: { collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } } },