We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vasallo94/obsidian-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
---
description: Quick commit and push changes to remote
---
# Quick Push Workflow
Use this workflow to quickly commit and push changes after verification passes.
## Steps
1. Check current status:
```bash
git status
```
2. Stage all changes:
```bash
git add .
```
3. Commit with appropriate message (use conventional commits):
```bash
git commit -m "type(scope): description"
```
Replace `type` with: feat, fix, docs, style, refactor, test, chore
Replace `scope` with the affected module (optional)
4. Push to remote:
```bash
git push origin main
```