executeCommand
Execute specific commands on the SiYuan Note MCP Server to manage notebooks, manipulate documents, and control content within the note system, enabling efficient data operations.
Instructions
执行指定的命令
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | 命令参数 | |
| type | Yes | 命令类型 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"params": {
"additionalProperties": {},
"description": "命令参数",
"type": "object"
},
"type": {
"description": "命令类型",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}