← VeritasGraph

VeritasGraph 0.1.2

pypi · veritasgraph-mcp · current release

5
Tools
2
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-30T08:26:03.060Z using mcpSecurity-inventory. Status: partial. Negotiated protocol: 2024-11-05.

Server capabilities
{
  "tools": {},
  "resources": {}
}

Tools 5

ToolCategoryAnnotationsRisk
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"
  ]
}
— · —

Resources 2

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.