query-knowledge-graph
Extract and analyze code context by querying a knowledge graph, enabling insights into repository structures, dependencies, and external references in text, JSON, or visualization formats.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contextDepth | No | ||
includeExternalKnowledge | No | ||
outputFormat | No | json | |
query | Yes | ||
repositoryUrl | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contextDepth": {
"default": 2,
"type": "number"
},
"includeExternalKnowledge": {
"default": true,
"type": "boolean"
},
"outputFormat": {
"default": "json",
"enum": [
"text",
"json",
"visualization"
],
"type": "string"
},
"query": {
"type": "string"
},
"repositoryUrl": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}