We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aegisx-platform/aegisx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Sync libs/aegisx-mcp to separate repository
# Usage: ./sync-to-repo.sh [branch]
BRANCH=${1:-main}
REMOTE_REPO="git@github.com:aegisx-platform/aegisx-mcp.git"
echo "π Syncing @aegisx/mcp to separate repository..."
echo "π¦ Branch: $BRANCH"
echo "π Remote: $REMOTE_REPO"
echo ""
# Navigate to project root
cd "$(git rev-parse --show-toplevel)"
# Push subtree to separate repository
echo "π Pushing subtree..."
git subtree push --prefix=libs/aegisx-mcp "$REMOTE_REPO" "$BRANCH"
if [ $? -eq 0 ]; then
echo ""
echo "β
Successfully synced to $REMOTE_REPO"
echo "π View at: https://github.com/aegisx-platform/aegisx-mcp"
else
echo ""
echo "β Failed to sync"
exit 1
fi