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