Use this tool to check the current context before performing operations:
// Check current contextconst context = await mcp.call("get_current_project", {});if (!context.projectId) { // No context set, need to select a project const projects = await mcp.call("list_projects", {}); await mcp.call("set_project", { projectId: projects.items[0].id });}// Now safe to use other toolsawait mcp.call("search_content", { query: "tutorials" });