Skip to main content
Glama
seayniclabs

Mooring

Official
by seayniclabs

Mooring — MCP-сервер для Git и GitHub

License: MIT

Швартовы для вашего кода — операции с Git и GitHub для ИИ-инструментов.

Mooring — это MCP-сервер, который предоставляет ИИ-ассистентам структурированный доступ к локальным Git-репозиториям и API GitHub. Локальные операции используют GitPython (без вызовов subprocess). Операции с GitHub используют библиотеку PyGithub со встроенной маскировкой токенов и обработкой ограничений частоты запросов (rate limits).


Инструменты

Локальный Git

Инструмент

Описание

Ключевые параметры

repo_status

Ветка, опережение/отставание, количество stash, индексированные/неиндексированные/неотслеживаемые файлы

repo_path

repo_log

Журнал коммитов с опциональными фильтрами

repo_path, max_count, author, since, path, search

repo_diff

Unified diff — рабочая директория, индекс или между ссылками

repo_path, staged, from_ref, to_ref

repo_blame

Git blame с опциональным диапазоном строк

repo_path, file_path, start_line, end_line

repo_branches

Все ветки с информацией об отслеживании, последнем коммите, опережении/отставании

repo_path

repo_stash

Операции со stash: список, push, pop, apply

repo_path, action, message

GitHub

Инструмент

Описание

Ключевые параметры

gh_pr_list

Список pull request'ов

repo, state, author, label

gh_pr_detail

Детали PR с ревью, комментариями и результатами проверок

repo, number

gh_pr_create

Создание pull request'а

repo, title, body, head, base, labels, reviewers

gh_issues

Список, создание или обновление issues

repo, state, action, title, body, number

gh_actions

Список недавних запусков рабочих процессов GitHub Actions

repo, workflow, status

Утилиты

Инструмент

Описание

Ключевые параметры

health

Версия сервера и проверка статуса

(нет)


Related MCP server: Git MCP Server

Установка

# PyPI
pip install mooring-mcp

# Isolated install
pipx install mooring-mcp

Использование

Запустите сервер напрямую:

mooring

Claude Code

claude mcp add mooring -- mooring

Claude Desktop

Добавьте в конфигурацию Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "mooring": {
      "command": "mooring",
      "env": {
        "GITHUB_TOKEN": "your-github-personal-access-token"
      }
    }
  }
}

Переменная окружения GITHUB_TOKEN обязательна для всех инструментов GitHub (gh_*). Локальные инструменты Git работают без неё.


Безопасность

  • Защита от обхода путей (path traversal) — пути к файлам разрешаются и проверяются относительно корня репозитория перед любой операцией

  • Обнаружение выхода за пределы через симлинки — симлинки, указывающие за пределы репозитория, отклоняются

  • Проверка ссылок (ref validation) — Git-ссылки проверяются на соответствие безопасному шаблону символов и подтверждаются на существование перед использованием

  • Маскировка токенов — сообщения об ошибках очищаются от шаблонов токенов GitHub (ghp_*, gho_*, github_pat_*) перед возвратом

  • Обработка ограничений частоты запросов — ответы GitHub 403 перехватываются и отображаются как понятные сообщения вместо необработанных исключений


Разработка

git clone https://github.com/seayniclabs/mooring.git
cd mooring
python -m venv .venv && source .venv/bin/activate
pip install -e ".[test]"
python -m pytest tests/ -q

Лицензия

MIT

TDQS

B3.4/5.0
Disambiguation4/5

Clear separation between GitHub API (gh_*) and local git (repo_*) operations. While gh_issues combines list/create/update into one tool whereas PR operations are split into separate tools, the descriptions clearly distinguish their purposes with no overlapping functionality between different tools.

Naming Consistency3/5

Uses consistent prefixes (gh_ and repo_) but mixes naming patterns: gh_issues and gh_actions use nouns while PR tools use verb_noun (gh_pr_create, gh_pr_list). Local git tools follow git command names (mostly nouns) but lack verb consistency with the GitHub action-oriented names.

Tool Count5/5

Twelve tools is well-scoped for a server bridging GitHub API and local git operations. The count covers essential inspection and management tasks without bloat, with each tool earning its place in the set.

Completeness3/5

Strong read-only coverage (status, log, diff, blame, list operations) but notable gaps in write operations: no PR update/merge/close, no local git commit/push/pull/checkout, and limited Actions support (list only). The surface supports inspection workflows well but leaves agents unable to complete full git/PR lifecycle operations.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Enables code review operations on GitHub and GitLab, including fetching pull/merge requests, viewing diffs, adding comments, analyzing code quality, and creating merge requests directly from your MCP client.
    15
    8
    4
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Provides comprehensive Git functionality to MCP clients, enabling users to manage repositories through operations like commits, diffs, and branch management via natural language. It automatically detects the current working directory and supports multi-project workflows across different local environments.
    16
    607
    2
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides 15 MCP tools for AI-powered Git intelligence, enabling commit messages, branch creation, PR descriptions, code review, diff analysis, and push operations directly from your AI assistant.
    MIT

Latest Blog Posts

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/seayniclabs/mooring'

If you have feedback or need assistance with the MCP directory API, please join our Discord server