We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/norman-finance/norman-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_stdio.sh•773 B
#!/bin/bash
# Run Norman MCP Server with stdio transport
# This script sets the necessary environment variables for authentication
# Check if .env file exists and source it if it does
if [ -f .env ]; then
source .env
fi
# Set the environment variables if not already set
if [ -z "$NORMAN_EMAIL" ] || [ -z "$NORMAN_PASSWORD" ]; then
# Prompt for credentials if not set in environment or .env file
echo "Norman API Credentials"
read -p "Email: " NORMAN_EMAIL
read -sp "Password: " NORMAN_PASSWORD
echo
# Export the variables
export NORMAN_EMAIL
export NORMAN_PASSWORD
fi
echo "Starting Norman MCP server with stdio transport..."
echo "Using credentials for: $NORMAN_EMAIL"
# Run the server
python -m norman_mcp --transport stdio