mirror of
https://github.com/FlipsideCrypto/flipside-mcp-extension.git
synced 2026-02-06 11:16:55 +00:00
15 lines
477 B
Bash
15 lines
477 B
Bash
|
|
#!/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
|