Path to a server's persistent OAuth store.
(serverName: string)
| 65 | |
| 66 | /** Path to a server's persistent OAuth store. */ |
| 67 | function authFilePath(serverName: string): string { |
| 68 | return path.join(authDir(), `${serverName}.json`) |
| 69 | } |
| 70 | |
| 71 | /** Read a server's OAuth store (or undefined if none). */ |
| 72 | function readAuthStore(serverName: string): McpAuthStore | undefined { |
no test coverage detected