We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/carlosazaustre/advocu-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# setup.sh - Initial setup script
set -e
echo "π Setting up Activity Reporting MCP Server..."
# Verify we're in the correct directory
if [[ ! -f "package.json" ]]; then
echo "β Error: Run this script from the project root directory"
exit 1
fi
# Install dependencies
echo "π¦ Installing dependencies..."
npm install
# Check if token exists
if [[ ! -f ".env" ]]; then
echo "β οΈ Creating .env file..."
echo "ADVOCU_ACCESS_TOKEN=your_token_here" > .env
echo "π Please edit .env with your actual token"
fi
# Compile the project
echo "π¨ Compiling TypeScript..."
npm run build
# Verify compilation
if [[ ! -f "dist/index.js" ]]; then
echo "β Error: Compilation failed"
exit 1
fi
echo "β
Setup completed!"
echo ""
echo "Next steps:"
echo "1. Edit .env with your actual Advocu token"
echo "2. Run: npm run start (to test)"
echo "3. Configure Claude Desktop with the path: $(pwd)/dist/index.js"
echo ""