0.1.2pypi · veritasgraph-mcp · current release
Observed 2026-08-30T08:26:03.060Z using mcpSecurity-inventory. Status: partial. Negotiated protocol: 2024-11-05.
{
"tools": {},
"resources": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
veritasgraph_clear_graphClear the entire knowledge graph (destructive; removes all data).Input schema{
"type": "object",
"properties": {}
} | — | — · — | — |
veritasgraph_get_graphReturn the full knowledge graph: all nodes, edges, and stats.Input schema{
"type": "object",
"properties": {}
} | — | — · — | — |
veritasgraph_ingest_documentIngest a document into the VeritasGraph knowledge graph. Chunks the text, extracts entities and relationships with a local model, and records the source chunk behind every node/edge for verifiable attribution.Input schema{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Full document text to ingest."
},
"title": {
"type": "string",
"description": "Human-readable document title."
},
"model": {
"type": "string",
"description": "Local Ollama model to use (defaults to $VERITASGRAPH_MODEL)."
}
},
"required": [
"text"
]
} | — | — · — | — |
veritasgraph_queryAsk a question and get a graph-grounded, multi-hop answer with verifiable [doc#chunk] citations and the reasoning path used.Input schema{
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "Natural-language question."
},
"model": {
"type": "string",
"description": "Local Ollama model to use (defaults to $VERITASGRAPH_MODEL)."
},
"max_depth": {
"type": "integer",
"description": "Max graph hops (default 2)."
},
"max_nodes": {
"type": "integer",
"description": "Max subgraph nodes (default 25)."
}
},
"required": [
"question"
]
} | — | — · — | — |
veritasgraph_search_entitiesRetrieve the subgraph most relevant to a query (entities, relationships, seeds) without invoking the LLM. Fast graph lookup.Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query / topic."
},
"max_depth": {
"type": "integer",
"description": "Max graph hops (default 2)."
},
"max_nodes": {
"type": "integer",
"description": "Max subgraph nodes (default 25)."
}
},
"required": [
"query"
]
} | — | — · — | — |
Live snapshot of the local knowledge graph (nodes, edges, stats).
{
"resource_key": "veritasgraph://graph",
"uri": "veritasgraph://graph",
"name": "VeritasGraph knowledge graph",
"description": "Live snapshot of the local knowledge graph (nodes, edges, stats).",
"mime_type": "application/json",
"annotations": null,
"metadata_hash": "d4f516369d2a72c3bf4b11dc4995dfc31909a98fd261a5ca0974b0f1ab1f8f87"
}Counts of entities, relationships, and source chunks.
{
"resource_key": "veritasgraph://stats",
"uri": "veritasgraph://stats",
"name": "VeritasGraph statistics",
"description": "Counts of entities, relationships, and source chunks.",
"mime_type": "application/json",
"annotations": null,
"metadata_hash": "e149f3cd8e7b0c6eb7ed9baba6bfba435e2689c8d3a55146833ed7c92a58ab66"
}