We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mjrestivo16/mcp-unifi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
push-to-github.sh•458 B
#!/bin/bash
# Script to push the UniFi MCP server to GitHub
# Run this after creating the repository on GitHub
# GitHub username - update if needed
GITHUB_USER="mjrestivo16"
REPO_NAME="mcp-unifi"
echo "Setting up GitHub remote..."
git remote add origin "https://github.com/$GITHUB_USER/$REPO_NAME.git"
echo "Pushing to GitHub..."
git branch -M main
git push -u origin main
echo "Done! Repository available at: https://github.com/$GITHUB_USER/$REPO_NAME"