#!/bin/bash
# Exit on error
set -e
echo "š Installing DexScreener MCP Server..."
# Create MCP directory if it doesn't exist
MCP_DIR="$HOME/Documents/Cline/MCP"
mkdir -p "$MCP_DIR"
cd "$MCP_DIR"
# Clone the repository
echo "š¦ Cloning repository..."
git clone https://github.com/yourusername/dexscreener-mcp-server.git
cd dexscreener-mcp-server
# Install dependencies and build
echo "š§ Installing dependencies..."
npm install
echo "š ļø Building project..."
npm run build
# Run setup script
echo "āļø Configuring Claude Desktop..."
npm run setup
echo "ā
Installation complete! Please restart Claude Desktop to activate the server."