Skip to content

Commit 1e49e69

Browse files
committed
cleanup
1 parent 8023136 commit 1e49e69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/mcp/src/utils/get-manifest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ function getManifestUrlFromRequest(request: Request, path: string): string {
128128
* replacing /mcp with the provided path
129129
*/
130130
async function defaultManifestProvider(
131-
request?: Request,
132-
path: string = './manifests/components.json',
131+
request: Request | undefined,
132+
path: string,
133133
): Promise<string> {
134134
if (!request) {
135135
throw new ManifestGetError(

0 commit comments

Comments
 (0)