We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/milesadkins/mcp-udp-genie'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_server.sh•561 B
#!/bin/bash
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
echo "=========================================="
echo "Starting MCP Server - Local Development"
echo "=========================================="
echo ""
echo "Step 1: Syncing dependencies..."
cd "$PROJECT_ROOT"
uv sync
echo "✓ Dependencies synced"
echo ""
echo "Step 2: Starting MCP server on http://localhost:8000..."
echo "Press Ctrl+C to stop the server"
echo ""
uv run custom-mcp-server