Merge pull request #3200 from cliffhall/roots-is-optional

Everything server - Fix error when referring to roots
This commit is contained in:
Ola Hungerford
2026-01-10 18:26:12 -07:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ export const roots: Map<string | undefined, Root[]> = new Map<
*/
export const syncRoots = async (server: McpServer, sessionId?: string) => {
const clientCapabilities = server.server.getClientCapabilities() || {};
const clientSupportsRoots: boolean = clientCapabilities.roots !== undefined;
const clientSupportsRoots: boolean = clientCapabilities?.roots !== undefined;
// Fetch the roots list for this client
if (clientSupportsRoots) {
@@ -48,7 +48,7 @@ export const syncRoots = async (server: McpServer, sessionId?: string) => {
{
level: "info",
logger: "everything-server",
data: `Roots updated: ${response.roots.length} root(s) received from client`,
data: `Roots updated: ${response?.roots?.length} root(s) received from client`,
},
sessionId
);