Replace dasher-pack with unified animation-pack using original Blender bone names

This commit is contained in:
2026-06-15 14:28:26 +08:00
parent 9dd3c59edf
commit 844ec194cb
297 changed files with 28680 additions and 1884 deletions
+24
View File
@@ -0,0 +1,24 @@
@tool
extends McpClient
## Claude Desktop's mcpServers entries are stdio-only, so we bridge our HTTP
## server through `uvx mcp-proxy --transport streamablehttp <url>`. `uvx` is
## already a plugin prereq, so this works without requiring Node.js.
func _init() -> void:
id = "claude_desktop"
display_name = "Claude Desktop"
config_type = "json"
doc_url = "https://claude.ai/download"
path_template = {
"darwin": "~/Library/Application Support/Claude/claude_desktop_config.json",
"windows": "$APPDATA/Claude/claude_desktop_config.json",
"linux": "$XDG_CONFIG_HOME/Claude/claude_desktop_config.json",
}
server_key_path = PackedStringArray(["mcpServers"])
## FLAT bridge: `{"command": "<uvx>", "args": [...]}`. The default
## verifier ALSO accepts a future url-style entry (Claude Desktop has
## been tolerant of both forms since the npx→uvx bridge migration).
entry_uvx_bridge = McpClient.UvxBridge.FLAT
detect_paths = PackedStringArray(path_template.values())