#!/bin/bash
# Start server with environment variables from specified file
# Get env file from parameter, default to .env.test
ENV_FILE=${1:-.env.test}
# Load variables from specified env file if it exists
if [ -f "$ENV_FILE" ]; then
echo "Loading environment from $ENV_FILE..."
set -a
source "$ENV_FILE"
set +a
else
echo "No $ENV_FILE found, using defaults..."
fi
echo "Starting server with configuration from $ENV_FILE..."
pnpm dev:json
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/evalstate/hf-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server