mirror of
https://github.com/FlipsideCrypto/flipside-mcp-extension.git
synced 2026-02-06 03:06:48 +00:00
* feat: add script to workaround permissions * feat: include fix-permissions script in GitHub releases - Add fix-permissions.sh to release assets - Update release notes to mention the script for permission issues - Provides workaround for Claude Desktop DXT extraction bug 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
15 lines
477 B
Bash
Executable File
15 lines
477 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Fix permissions for Flipside MCP Extension
|
|
USERNAME=$(whoami)
|
|
MCP_PROXY_PATH="/Users/$USERNAME/Library/Application Support/Claude/Claude Extensions/local.dxt.flipside.flipside-intelligence-mcp/remote-mcp-proxy"
|
|
|
|
echo "Setting executable permissions for MCP proxy..."
|
|
chmod +x "$MCP_PROXY_PATH"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "✓ Permissions fixed successfully!"
|
|
else
|
|
echo "✗ Failed to set permissions. Make sure the extension is installed."
|
|
exit 1
|
|
fi |