You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/tools/lsp/lsp-tools.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ import { logger } from '../../utils/logger';
24
24
constlspParamsSchema={
25
25
character: z.number().int().min(0).describe('0-based character offset within the line'),
26
26
file_content: z.string().optional().describe('Optional file content override (reads from disk if omitted)'),
27
-
file_path: z.string().describe('Absolute path to the CodeQL (.ql/.qll) file'),
27
+
file_path: z.string().describe('Path to the CodeQL (.ql/.qll) file. Relative paths are resolved against the user workspace directory (see CODEQL_MCP_WORKSPACE).'),
28
28
line: z.number().int().min(0).describe('0-based line number in the document'),
29
29
search_path: z.string().optional().describe('Optional search path for CodeQL libraries'),
30
30
workspace_uri: z.string().optional().describe('Optional workspace URI for context (defaults to ./ql directory)'),
0 commit comments