We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MarcusJellinghaus/mcp-code-checker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
---
allowed-tools: Bash(git status:*), Bash(git diff:*), Bash(git add:*), Bash(git commit:*), Bash(git push:*), Bash(./tools/format_all.sh:*), Bash(tools\\format_all.bat:*), Read, Glob, Grep
workflow-stage: utility
suggested-next: (context-dependent)
---
# Commit and Push Changes
Follow this process to commit and push your changes:
## 1. Format Code
```bash
# Linux/macOS
./tools/format_all.sh
# Windows
tools\format_all.bat
```
## 2. Review Changes
```bash
git status
git diff
```
## 3. Stage Changes
Stage all relevant changes (exclude any files that shouldn't be committed).
## 4. Commit
Create a commit with a clear, conventional commit message:
- Use format: `type(scope): description`
- Types: feat, fix, docs, style, refactor, test, chore
- Keep summary under 50 characters
- **No Claude Code footer or attribution in commit message**
## 5. Push
```bash
git push
```
If the branch doesn't exist on remote yet:
```bash
git push -u origin HEAD
```