codeql-development-mcp-server 2.24.2-rc3 → 2.24.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeql-development-mcp-server",
3
- "version": "2.24.2-rc3",
3
+ "version": "2.24.2",
4
4
  "description": "An MCP server supporting LLM requests for CodeQL development tools and resources.",
5
5
  "main": "dist/codeql-development-mcp-server.js",
6
6
  "type": "module",
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-actions-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for actions language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific function
16
16
  - Understanding what a function calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -31,13 +30,13 @@ void sourceFunc() { // Source function for analysis
31
30
  }
32
31
  ```
33
32
 
34
- Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern `Call from 'sourceFunc' to 'helper1'`.
33
+ Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
35
34
 
36
35
  ## Output Format
37
36
 
38
37
  The query is a `@kind problem` query producing rows of:
39
38
 
40
- - `select call, "Call from 'source' to 'callee'"`
39
+ - ``select call, "Call from `source` to `callee`"``
41
40
 
42
41
  ## References
43
42
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific function
16
16
  - Impact analysis before modifying a function signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -28,13 +27,13 @@ void caller1() { targetFunc(); }
28
27
  void caller2() { targetFunc(); }
29
28
  ```
30
29
 
31
- Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern `Call to 'targetFunc' from 'caller1'`.
30
+ Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
32
31
 
33
32
  ## Output Format
34
33
 
35
34
  The query is a `@kind problem` query producing rows of:
36
35
 
37
- - `select call, "Call to 'target' from 'caller'"`
36
+ - ``select call, "Call to `target` from `caller`"``
38
37
 
39
38
  ## References
40
39
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-cpp-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for cpp language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific method
16
16
  - Understanding what a method calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -31,13 +30,13 @@ void SourceMethod() { // Source method for analysis
31
30
  }
32
31
  ```
33
32
 
34
- Running with `sourceFunction = "SourceMethod"` produces results showing each call site with the message pattern `Call from 'SourceMethod' to 'Helper1'`.
33
+ Running with `sourceFunction = "SourceMethod"` produces results showing each call site with the message pattern ``Call from `SourceMethod` to `Helper1``.
35
34
 
36
35
  ## Output Format
37
36
 
38
37
  The query is a `@kind problem` query producing rows of:
39
38
 
40
- - `select call, "Call from 'source' to 'callee'"`
39
+ - ``select call, "Call from `source` to `callee`"``
41
40
 
42
41
  ## References
43
42
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific method
16
16
  - Impact analysis before modifying a method signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -28,13 +27,13 @@ void Caller1() { TargetMethod(); }
28
27
  void Caller2() { TargetMethod(); }
29
28
  ```
30
29
 
31
- Running with `targetFunction = "TargetMethod"` produces results showing each call site with the message pattern `Call to 'TargetMethod' from 'Caller1'`.
30
+ Running with `targetFunction = "TargetMethod"` produces results showing each call site with the message pattern ``Call to `TargetMethod` from `Caller1``.
32
31
 
33
32
  ## Output Format
34
33
 
35
34
  The query is a `@kind problem` query producing rows of:
36
35
 
37
- - `select call, "Call to 'target' from 'caller'"`
36
+ - ``select call, "Call to `target` from `caller`"``
38
37
 
39
38
  ## References
40
39
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-csharp-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for csharp language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific function
16
16
  - Understanding what a function calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -31,13 +30,13 @@ func sourceFunc() { // Source function for analysis
31
30
  }
32
31
  ```
33
32
 
34
- Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern `Call from 'sourceFunc' to 'helper1'`.
33
+ Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
35
34
 
36
35
  ## Output Format
37
36
 
38
37
  The query is a `@kind problem` query producing rows of:
39
38
 
40
- - `select call, "Call from 'source' to 'callee'"`
39
+ - ``select call, "Call from `source` to `callee`"``
41
40
 
42
41
  ## References
43
42
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific function
16
16
  - Impact analysis before modifying a function signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -28,13 +27,13 @@ func caller1() { targetFunc() }
28
27
  func caller2() { targetFunc() }
29
28
  ```
30
29
 
31
- Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern `Call to 'targetFunc' from 'caller1'`.
30
+ Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
32
31
 
33
32
  ## Output Format
34
33
 
35
34
  The query is a `@kind problem` query producing rows of:
36
35
 
37
- - `select call, "Call to 'target' from 'caller'"`
36
+ - ``select call, "Call to `target` from `caller`"``
38
37
 
39
38
  ## References
40
39
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-go-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for go language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific method
16
16
  - Understanding what a method calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -31,13 +30,13 @@ void sourceMethod() { // Source method for analysis
31
30
  }
32
31
  ```
33
32
 
34
- Running with `sourceFunction = "sourceMethod"` produces results showing each call site with the message pattern `Call from 'sourceMethod' to 'helper1'`.
33
+ Running with `sourceFunction = "sourceMethod"` produces results showing each call site with the message pattern ``Call from `sourceMethod` to `helper1``.
35
34
 
36
35
  ## Output Format
37
36
 
38
37
  The query is a `@kind problem` query producing rows of:
39
38
 
40
- - `select call, "Call from 'source' to 'callee'"`
39
+ - ``select call, "Call from `source` to `callee`"``
41
40
 
42
41
  ## References
43
42
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific method
16
16
  - Impact analysis before modifying a method signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -28,13 +27,13 @@ void caller1() { targetMethod(); }
28
27
  void caller2() { targetMethod(); }
29
28
  ```
30
29
 
31
- Running with `targetFunction = "targetMethod"` produces results showing each call site with the message pattern `Call to 'targetMethod' from 'caller1'`.
30
+ Running with `targetFunction = "targetMethod"` produces results showing each call site with the message pattern ``Call to `targetMethod` from `caller1``.
32
31
 
33
32
  ## Output Format
34
33
 
35
34
  The query is a `@kind problem` query producing rows of:
36
35
 
37
- - `select call, "Call to 'target' from 'caller'"`
36
+ - ``select call, "Call to `target` from `caller`"``
38
37
 
39
38
  ## References
40
39
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-java-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for java language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific function
16
16
  - Understanding what a function calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -34,13 +33,13 @@ function sourceFunc() {
34
33
  }
35
34
  ```
36
35
 
37
- Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern `Call from 'sourceFunc' to 'helper1'`.
36
+ Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
38
37
 
39
38
  ## Output Format
40
39
 
41
40
  The query is a `@kind problem` query producing rows of:
42
41
 
43
- - `select call, "Call from 'source' to 'callee'"`
42
+ - ``select call, "Call from `source` to `callee`"``
44
43
 
45
44
  ## References
46
45
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific function
16
16
  - Impact analysis before modifying a function signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -32,13 +31,13 @@ function caller2() {
32
31
  }
33
32
  ```
34
33
 
35
- Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern `Call to 'targetFunc' from 'caller1'`.
34
+ Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
36
35
 
37
36
  ## Output Format
38
37
 
39
38
  The query is a `@kind problem` query producing rows of:
40
39
 
41
- - `select call, "Call to 'target' from 'caller'"`
40
+ - ``select call, "Call to `target` from `caller`"``
42
41
 
43
42
  ## References
44
43
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-javascript-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for javascript language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific function
16
16
  - Understanding what a function calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -33,13 +32,13 @@ def source_func(): # Source function for analysis
33
32
  helper2()
34
33
  ```
35
34
 
36
- Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern `Call from 'source_func' to 'helper1'`.
35
+ Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern ``Call from `source_func` to `helper1``.
37
36
 
38
37
  ## Output Format
39
38
 
40
39
  The query is a `@kind problem` query producing rows of:
41
40
 
42
- - `select call, "Call from 'source' to 'callee'"`
41
+ - ``select call, "Call from `source` to `callee`"``
43
42
 
44
43
  ## References
45
44
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific function
16
16
  - Impact analysis before modifying a function signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -32,13 +31,13 @@ def caller2():
32
31
  target_func()
33
32
  ```
34
33
 
35
- Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern `Call to 'target_func' from 'caller1'`.
34
+ Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern ``Call to `target_func` from `caller1``.
36
35
 
37
36
  ## Output Format
38
37
 
39
38
  The query is a `@kind problem` query producing rows of:
40
39
 
41
- - `select call, "Call to 'target' from 'caller'"`
40
+ - ``select call, "Call to `target` from `caller`"``
42
41
 
43
42
  ## References
44
43
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-python-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for python language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific method
16
16
  - Understanding what a method calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -35,13 +34,13 @@ def source_func # Source method for analysis
35
34
  end
36
35
  ```
37
36
 
38
- Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern `Call from 'source_func' to 'helper1'`.
37
+ Running with `sourceFunction = "source_func"` produces results showing each call site with the message pattern ``Call from `source_func` to `helper1``.
39
38
 
40
39
  ## Output Format
41
40
 
42
41
  The query is a `@kind problem` query producing rows of:
43
42
 
44
- - `select call, "Call from 'source' to 'callee'"`
43
+ - ``select call, "Call from `source` to `callee`"``
45
44
 
46
45
  ## References
47
46
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific method
16
16
  - Impact analysis before modifying a method signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -34,13 +33,13 @@ def caller2
34
33
  end
35
34
  ```
36
35
 
37
- Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern `Call to 'target_func' from 'caller1'`.
36
+ Running with `targetFunction = "target_func"` produces results showing each call site with the message pattern ``Call to `target_func` from `caller1``.
38
37
 
39
38
  ## Output Format
40
39
 
41
40
  The query is a `@kind problem` query producing rows of:
42
41
 
43
- - `select call, "Call to 'target' from 'caller'"`
42
+ - ``select call, "Call to `target` from `caller`"``
44
43
 
45
44
  ## References
46
45
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-ruby-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for ruby language'
4
4
  library: false
5
5
  dependencies:
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Mapping outbound dependencies of a specific function
16
16
  - Understanding what a function calls and in what order
17
17
  - Analyzing call chains for refactoring or security review
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -31,13 +30,13 @@ func sourceFunc() { // Source function for analysis
31
30
  }
32
31
  ```
33
32
 
34
- Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern `Call from 'sourceFunc' to 'helper1'`.
33
+ Running with `sourceFunction = "sourceFunc"` produces results showing each call site with the message pattern ``Call from `sourceFunc` to `helper1``.
35
34
 
36
35
  ## Output Format
37
36
 
38
37
  The query is a `@kind problem` query producing rows of:
39
38
 
40
- - `select call, "Call from 'source' to 'callee'"`
39
+ - ``select call, "Call from `source` to `callee`"``
41
40
 
42
41
  ## References
43
42
 
@@ -15,7 +15,6 @@ This query is primarily used for:
15
15
  - Finding all callers of a specific function
16
16
  - Impact analysis before modifying a function signature
17
17
  - Understanding usage patterns and entry points
18
- - IDE integration for call hierarchy navigation
19
18
 
20
19
  ## Example
21
20
 
@@ -28,13 +27,13 @@ func caller1() { targetFunc() }
28
27
  func caller2() { targetFunc() }
29
28
  ```
30
29
 
31
- Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern `Call to 'targetFunc' from 'caller1'`.
30
+ Running with `targetFunction = "targetFunc"` produces results showing each call site with the message pattern ``Call to `targetFunc` from `caller1``.
32
31
 
33
32
  ## Output Format
34
33
 
35
34
  The query is a `@kind problem` query producing rows of:
36
35
 
37
- - `select call, "Call to 'target' from 'caller'"`
36
+ - ``select call, "Call to `target` from `caller`"``
38
37
 
39
38
  ## References
40
39
 
@@ -1,5 +1,5 @@
1
1
  name: advanced-security/ql-mcp-swift-tools-src
2
- version: 2.24.2-rc3
2
+ version: 2.24.2
3
3
  description: 'Queries for codeql-development-mcp-server tools for swift language'
4
4
  library: false
5
5
  dependencies: