We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/INSIDE-HAIR/mcp-google-calendar-and-meet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Google Meet MCP Server - Token Refresh Script
# This script automates the token renewal process
echo "π Google Meet MCP Server - Token Refresh"
echo "=========================================="
# Check if credentials file exists
if [ ! -f "credentials.json" ]; then
echo "β Error: credentials.json not found in current directory"
echo "π‘ Make sure you're running this script from the project root directory"
exit 1
fi
# Set credentials path
CREDENTIALS_PATH="$(pwd)/credentials.json"
echo "π Using credentials: $CREDENTIALS_PATH"
# Run setup (now automatically removes old tokens)
echo ""
echo "π Starting OAuth authentication..."
echo "π Setup will automatically remove expired tokens and create a new one"
echo "π Follow the instructions to complete authentication in your browser"
echo ""
G_OAUTH_CREDENTIALS="$CREDENTIALS_PATH" npm run setup
# Check if token was created successfully
if [ -f "credentials.token.json" ]; then
echo ""
echo "β
Token refresh completed successfully!"
echo "π Please restart Claude Desktop (Cmd+Q and reopen) to use the new token"
echo ""
echo "π Next steps:"
echo " 1. Close Claude Desktop completely (Cmd+Q)"
echo " 2. Open Claude Desktop again"
echo " 3. Test Google Meet MCP Server functionality"
else
echo ""
echo "β Token refresh failed!"
echo "π‘ Please check the authentication process and try again"
exit 1
fi