git-standup-mcp
git-standup-mcp
MCP-сервер, который генерирует отчеты для стендапов на основе вашей истории git и публикует их в Slack. Спросите Claude, что вы делали вчера, или настройте cron-задачу для автоматической публикации каждое утро.
Установка
# Add to Claude Code
claude mcp add git-standup -- uv run --directory /path/to/git-standup-mcp git-standup-mcpИли добавьте в конфигурацию MCP вручную:
{
"mcpServers": {
"git-standup": {
"command": "uv",
"args": ["run", "--directory", "/path/to/git-standup-mcp", "git-standup-mcp"],
"env": {
"GIT_STANDUP_REPOS": "/path/to/repo1,/path/to/repo2",
"SLACK_STANDUP_WEBHOOK": "https://hooks.slack.com/services/..."
}
}
}
}Related MCP server: git-finder-mcp
Использование
После подключения спросите Claude:
"Что я делал вчера?"
"Сделай отчет для стендапа за последние 3 дня"
"Опубликуй мой отчет в Slack"
"К каким репозиториям у тебя есть доступ?"
Интеграция со Slack
Настройте Incoming Webhook для вашего канала стендапов, затем установите SLACK_STANDUP_WEBHOOK.
Автоматические ежедневные публикации (cron)
# Post yesterday's standup at 9am on weekdays
0 9 * * 1-5 cd /path/to/git-standup-mcp && \
GIT_STANDUP_REPOS="~/projects,~/work" \
SLACK_STANDUP_WEBHOOK="https://hooks.slack.com/..." \
uv run python -m git_standup_mcp.cron# Dry run — see the report without posting
uv run python -m git_standup_mcp.cron --dry-run
# Monday morning — cover the weekend
uv run python -m git_standup_mcp.cron --days 3
# Filter by author
uv run python -m git_standup_mcp.cron --author "Anisha"Инструменты
git_standup
Получение отчета о недавней активности в git по вашим репозиториям.
Параметр | Тип | По умолчанию | Описание |
| int | 1 | Количество дней для анализа |
| string | null | Фильтр по имени автора (частичное совпадение) |
| string | null | Пути к репозиториям через запятую (переопределяет переменные окружения) |
git_repos
Список всех git-репозиториев, которые видит сервер.
post_to_slack
Публикация сообщения в Slack через вебхук.
Параметр | Тип | По умолчанию | Описание |
| string | required | Текст сообщения (поддерживает Slack markdown) |
| string | null | Переопределение канала (если не задано, используется значение по умолчанию для вебхука) |
Конфигурация
Переменная окружения | Описание |
| Директории через запятую для поиска репозиториев (по умолчанию: ~/Documents) |
| URL входящего вебхука Slack для публикации |
Репозитории автоматически обнаруживаются на глубине до 2 уровней.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables Claude to interact with git repositories by providing real-time access to repository status, branch information, commit history, and file changes. Allows users to query their git workspace through natural language commands.
- FlicenseAqualityDmaintenanceEnables natural language code search across multiple local Git repositories, allowing users to register projects, search for code, and explore file structures through Claude.6
- AlicenseAqualityCmaintenanceConnects Claude to GitHub activity to generate standup summaries of commits, PRs, reviews, and issues for individuals or teams.325MIT
- FlicenseAqualityBmaintenanceAnalyzes Git commit history and code diffs to auto-remember development context, providing commit timelines, work sessions, unfinished task detection, and daily/weekly reports.9
Related MCP Connectors
Edit your Overleaf LaTeX projects from Claude and ChatGPT; every change is a real Git commit.
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/anisha-agarwal/git-standup-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server