#!/bin/bash
# Script to push the Atlassian MCP server to GitHub
# This script helps push the code to the GitHub repository
REPO_URL="https://github.com/kompallik/ATLASSIAN-MCP"
REPO_NAME="ATLASSIAN-MCP"
echo "Pushing Atlassian MCP Server to GitHub"
echo "Repository: $REPO_URL"
echo ""
# Check if git is installed
if ! command -v git &> /dev/null; then
echo "Error: git is not installed. Please install git first."
exit 1
fi
# Check if the directory is already a git repository
if [ -d ".git" ]; then
echo "This directory is already a git repository."
# Check if the remote is already set
CURRENT_REMOTE=$(git remote get-url origin 2>/dev/null || echo "")
if [ "$CURRENT_REMOTE" = "$REPO_URL" ]; then
echo "Remote is already set to $REPO_URL"
else
echo "Setting remote to $REPO_URL"
git remote remove origin 2>/dev/null
git remote add origin "$REPO_URL"
fi
else
echo "Initializing git repository..."
git init
git remote add origin "$REPO_URL"
fi
# Add all files
echo "Adding files to git..."
git add .
# Commit changes
echo "Committing changes..."
read -p "Enter commit message: " COMMIT_MESSAGE
git commit -m "$COMMIT_MESSAGE"
# Push to GitHub
echo "Pushing to GitHub..."
git push -u origin master
echo ""
echo "Done! Your code has been pushed to $REPO_URL"
echo "You can now publish it to the Cline MCP Marketplace."
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kompallik/ATLASSIAN-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server