mirror of
https://github.com/aaronsb/obsidian-mcp-plugin.git
synced 2026-07-22 06:45:14 +00:00
The plugin code already calls APIs introduced in newer Obsidian versions (FileManager.trashFile in 1.6.6, Workspace.getLeaf in 0.16.0, Vault.createFolder in 1.4.0, ToggleComponent.setDisabled in 1.2.3, AbstractTextComponent.setDisabled in 1.2.3, ButtonComponent.setTooltip in 1.1.0). Declaring minAppVersion 0.15.0 was misleading — anyone between 0.15 and 1.5 would have the plugin load and then crash at runtime. Set the floor to 1.6.6 to match the highest API actually used.
11 lines
382 B
JSON
11 lines
382 B
JSON
{
|
|
"id": "semantic-vault-mcp",
|
|
"name": "Semantic Notes Vault MCP",
|
|
"minAppVersion": "1.6.6",
|
|
"description": "Semantic MCP server providing AI tools with direct vault access via HTTP transport.",
|
|
"author": "Aaron Bockelie",
|
|
"authorUrl": "https://github.com/aaronsb",
|
|
"fundingUrl": "https://github.com/sponsors/aaronsb",
|
|
"isDesktopOnly": true,
|
|
"version": "0.11.21"
|
|
}
|