Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup
  • Loading branch information
JReinhold committed Nov 19, 2025
commit 1e49e695e7ac1acf9970a07ba116771dc7371bcc
4 changes: 2 additions & 2 deletions packages/mcp/src/utils/get-manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ function getManifestUrlFromRequest(request: Request, path: string): string {
* replacing /mcp with the provided path
*/
async function defaultManifestProvider(
request?: Request,
path: string = './manifests/components.json',
request: Request | undefined,
path: string,
): Promise<string> {
if (!request) {
throw new ManifestGetError(
Expand Down
Loading