We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WowWashington/sellerchamp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run.sh•431 B
#!/bin/bash
# SellerChamp MCP Server Runner
# Starts the enhanced SellerChamp MCP server
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Check for API token
if [ -z "$SELLERCHAMP_API_TOKEN" ]; then
echo "Error: SELLERCHAMP_API_TOKEN environment variable not set" >&2
echo "Get your API token from: SellerChamp Settings > API Settings" >&2
exit 1
fi
# Run the server
exec python3 "$SCRIPT_DIR/server.py"