delete_quest
Remove a specific quest from the knowledge graph by specifying its name using the delete_quest tool on the MemoryMesh MCP server.
Instructions
Delete an existing quest from the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delete_quest | Yes | Delete parameters for quest |
Input Schema (JSON Schema)
{
"properties": {
"delete_quest": {
"description": "Delete parameters for quest",
"properties": {
"name": {
"description": "The name of the quest to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"delete_quest"
],
"type": "object"
}