export-knowledge-graph
Export structured knowledge graphs from repositories in JSON, Mermaid, DOT, or Cypher formats. Designed for advanced code analysis and dependency visualization in the CodeAnalysis MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | json | |
repositoryUrl | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "json",
"enum": [
"json",
"mermaid",
"dot",
"cypher"
],
"type": "string"
},
"repositoryUrl": {
"type": "string"
}
},
"required": [
"repositoryUrl"
],
"type": "object"
}