We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benro/personal-productivity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.shβ’990 B
#!/bin/bash
# Quick start script for personal-productivity-mcp
set -e
echo "π Starting Personal Productivity MCP Server"
echo "============================================"
# Check if .env exists
if [ ! -f .env ]; then
echo "π Creating .env file from template..."
cp .env.example .env
echo "β .env file created. Please review and update as needed."
fi
# Create data directory if it doesn't exist
mkdir -p data config
# Build and start the Docker container
echo "π³ Building Docker container..."
docker-compose build
echo "π― Starting MCP server..."
docker-compose up -d
echo ""
echo "β Server is running!"
echo ""
echo "To view logs:"
echo " docker-compose logs -f"
echo ""
echo "To stop the server:"
echo " docker-compose down"
echo ""
echo "Next steps:"
echo " 1. Check the logs to ensure the server started successfully"
echo " 2. Configure Claude Desktop to use this MCP server (see README.md)"
echo " 3. Test with: 'Search for jobs at Anthropic'"