Skip to main content
Glama

Activity Reporting MCP Server

setup.sh•961 B
#!/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 ""

MCP directory API

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