import_knowledge
Import thinking states and PDF knowledge from an exported file to enable structured, sequential problem-solving and alternative reasoning paths within the Visum Thinker MCP Server.
Instructions
Import thinking state and PDF knowledge from an exported file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
importPath | Yes | Absolute path to the exported knowledge file to import |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"importPath": {
"description": "Absolute path to the exported knowledge file to import",
"type": "string"
}
},
"required": [
"importPath"
],
"type": "object"
}