(_req: Request, res: Response)
| 164 | } |
| 165 | |
| 166 | function methodNotAllowed(_req: Request, res: Response): void { |
| 167 | res |
| 168 | .status(405) |
| 169 | .json(jsonRpcError(null, -32000, "Method not allowed: the e2a MCP server is stateless")); |
| 170 | } |
| 171 | |
| 172 | // resourceMetadataURL returns the value the `WWW-Authenticate` header |
| 173 | // should advertise. Honors publicUrl when set (local-dev http), falls |
nothing calls this directly
no test coverage detected