#!/bin/bash
# Check if .env file exists
if [ ! -f .env ]; then
echo "Error: .env file not found. Please create one based on .env.example"
exit 1
fi
# Load environment variables from .env file
source .env
# Check if USEKEEN_API_KEY is set
if [ -z "$USEKEEN_API_KEY" ]; then
echo "Error: USEKEEN_API_KEY is not set in .env file"
exit 1
fi
# Install dependencies if needed
if ! pip show usekeen-mcp &> /dev/null; then
echo "Installing package in development mode..."
pip install -e .
fi
# Run the server
echo "Running UseKeen MCP server..."
USEKEEN_API_KEY=$USEKEEN_API_KEY python -m usekeen_mcp
echo "Server stopped"
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/PromptMixerDev/usekeen-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server