We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wolffcatskyy/homeops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_local.sh•161 B
#!/usr/bin/env bash
set -euo pipefail
if [ -f .env ]; then set -a; source .env; set +a; fi
exec uvicorn homeops_mcp.main:app --host 0.0.0.0 --port 8000 --reload