Skip to content

Commit 2f6dec6

Browse files
committed
Remove extra slash from MCP server URL construction
1 parent 1c3dc7a commit 2f6dec6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/actors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ export async function getActorsMCPServerURL(actorID: string, _apifyToken: string
1818
'securitybyobscurity.apify.actor' : 'apify.actor';
1919
const standbyUrl = getActorStandbyURL(actorID, standbyBaseUrl);
2020
const mcpPath = await getActorsMCPServerPath(actorID, _apifyToken);
21-
return `${standbyUrl}/${mcpPath}`;
21+
return `${standbyUrl}${mcpPath}`;
2222
}

0 commit comments

Comments
 (0)