We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chacebot/mcp-xcode-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
GIT_SETUP.md•1.21 KiB
# Git Repository Setup
This repository has been initialized with git. To push it to GitHub (or another remote), follow these steps:
## Initial Setup
### 1. Create a GitHub Repository
1. Go to https://github.com/new
2. Repository name: `mcp-xcode-server`
3. Description: "MCP server for Xcode project interactions"
4. Choose Public or Private
5. **Do NOT** initialize with README, .gitignore, or license (we already have these)
6. Click "Create repository"
### 2. Add Remote and Push
```bash
cd /Users/chace/Developer/mcp-xcode-server
# Add your GitHub repository as remote (replace with your username)
git remote add origin https://github.com/chacebot/mcp-xcode-server.git
# Push to GitHub
git branch -M main
git push -u origin main
```
### 3. Verify
Check your GitHub repository to confirm all files were pushed successfully.
## Alternative: Using SSH
If you prefer SSH:
```bash
git remote add origin git@github.com:chacebot/mcp-xcode-server.git
git branch -M main
git push -u origin main
```
## Future Updates
After making changes:
```bash
git add .
git commit -m "Your commit message"
git push
```
## Note
Update the repository URL in `package.json` if you're using a different GitHub username or repository name.