We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MmaxwellCB/Pfsesen_MCP_2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-http.sh•429 B
#!/bin/bash
# Start pfSense MCP Server in HTTP mode
# Load environment variables
set -a
source .env 2>/dev/null || true
set +a
# Set HTTP mode
export MCP_MODE=http
export MCP_HOST=${MCP_HOST:-"0.0.0.0"}
export MCP_PORT=${MCP_PORT:-"8000"}
echo "Starting pfSense MCP Server in HTTP mode..."
echo "Server will be available at: http://${MCP_HOST}:${MCP_PORT}/mcp"
echo ""
echo "Press Ctrl+C to stop"
echo ""
python3 -m src.main