workflow
Provides context-based workflow guidance and actionable suggestions to optimize tasks in the Obsidian Semantic MCP Server environment.
Instructions
Workflow guidance and suggestions based on current context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The specific action to perform | |
type | No | Type of analysis or workflow |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The specific action to perform",
"enum": [
"suggest"
],
"type": "string"
},
"type": {
"description": "Type of analysis or workflow",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}