# Instructions for Pushing MCP-JIRA to GitHub
We've encountered authentication issues when trying to push to the GitHub repository. Here are manual instructions to complete this task:
## Option 1: Using HTTPS with Personal Access Token
1. Create a Personal Access Token (PAT) on GitHub:
- Go to GitHub → Settings → Developer settings → Personal access tokens → Tokens (classic)
- Click "Generate new token" → "Generate new token (classic)"
- Give it a name like "MCP-JIRA Push"
- Select at least the "repo" scope
- Click "Generate token" and copy the token
2. Configure Git to use HTTPS with your PAT:
```bash
git remote set-url origin https://YOUR_USERNAME:YOUR_TOKEN@github.com/amruthabesto28/JIRA-MCP.git
```
3. Push your changes:
```bash
git push -u origin fix/remove-confluence-code
```
## Option 2: Configure SSH Keys Properly
1. Check if you have SSH keys:
```bash
ls -la ~/.ssh
```
2. Generate new SSH keys if needed:
```bash
ssh-keygen -t ed25519 -C "your_email@example.com"
```
3. Add the SSH key to the ssh-agent:
```bash
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
```
4. Add the SSH key to your GitHub account:
- Copy the SSH public key: `cat ~/.ssh/id_ed25519.pub`
- Go to GitHub → Settings → SSH and GPG keys → New SSH key
- Paste your key and save
5. Test your SSH connection:
```bash
ssh -T git@github.com
```
6. Push your changes:
```bash
git push -u origin fix/remove-confluence-code
```
## Option 3: Create a New Repository
If you prefer to start fresh:
1. Create a new repository on GitHub named "JIRA-MCP"
2. Initialize a new Git repository in your local code directory:
```bash
cd /path/to/your/code
git init
git add .
git commit -m "Initial commit"
```
3. Add the remote and push:
```bash
git remote add origin https://github.com/amruthabesto28/JIRA-MCP.git
git branch -M main
git push -u origin main
```
Choose the option that works best for your situation. Option 1 (HTTPS with PAT) is often the easiest to get working quickly.
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/amruthabesto28/JIRA-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server