Criage MCP Server

MCP (Model Context Protocol) сервер для пакетного менеджера Criage. Предоставляет полный функционал клиента Criage через протокол MCP для интеграции

Local serverstdioGo

What is the Criage MCP MCP server?

Criage mcp mcp server lets Claude, Cursor and other MCP clients work with Criage MCP directly. MCP (Model Context Protocol) сервер для пакетного менеджера Criage. Предоставляет полный функционал клиента Criage через протокол MCP для интеграции с AI инструментами.

What Criage MCP does

MCP (Model Context Protocol) сервер для пакетного менеджера Criage. Предоставляет полный функционал клиента Criage через протокол MCP для интеграции с AI инструментами.

Tools it exposes

Once connected, the assistant can call these 10 tools directly:

  • install_package — Установка пакета из репозитория
  • uninstall_package — Удаление установленного пакета
  • update_package — Обновление пакета до последней версии
  • list_packages — Список установленных пакетов
  • package_info — Подробная информация о пакете
  • search_packages — Поиск пакетов в репозиториях
  • repository_info — Информация о репозитории
  • create_package — Создание нового пакета
  • build_package — Сборка пакета
  • publish_package — Публикация пакета в репозиторий

Installing the criage mcp mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Criage MCP sits in that group, and the shape of its toolset — install_package, uninstall_package, update_package among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 10 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Criage MCP.
  • Maintained by Zu-Krein, written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the criage mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
install_packageУстановка пакета из репозитория
uninstall_packageУдаление установленного пакета
update_packageОбновление пакета до последней версии
list_packagesСписок установленных пакетов
package_infoПодробная информация о пакете
search_packagesПоиск пакетов в репозиториях
repository_infoИнформация о репозитории
create_packageСоздание нового пакета
build_packageСборка пакета
publish_packageПубликация пакета в репозиторий

How to install the Criage MCP MCP server

{
  "mcpServers": {
    "criage": {
      "command": "/path/to/criage-mcp-server"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Criage MCP to install package.
  • Use Criage MCP to uninstall package.
  • Use Criage MCP to update package.

Frequently asked questions

It connects Criage MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (install_package, uninstall_package, update_package, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Criage MCP directly.