(url: string, path: string)
| 54 | }; |
| 55 | |
| 56 | const isMcpPath = (url: string, path: string): boolean => { |
| 57 | const parsed = new URL(url, "http://executor.test"); |
| 58 | return parsed.pathname === path; |
| 59 | }; |
| 60 | |
| 61 | const protectedResourcePath = "/.well-known/oauth-protected-resource"; |
| 62 |