mcphost: init at 0.7.1 (#404600)

authored by

Pol Dellaiera and committed by
GitHub
80ef9790 4b879da1

+27
+27
pkgs/by-name/mc/mcphost/package.nix
···
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildGoModule (finalAttrs: { 8 + pname = "mcphost"; 9 + version = "0.7.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "mark3labs"; 13 + repo = "mcphost"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-4vKzrT/1pEupiW3IaQV6d4Y2QHKNBH8sCA4TP8qn+50="; 16 + }; 17 + 18 + vendorHash = "sha256-yD+83cuOIBFF91Zu4Xi2g+dsP4iUOTrjBOuetowLRQw="; 19 + 20 + meta = { 21 + description = "A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP"; 22 + homepage = "https://github.com/mark3labs/mcphost"; 23 + license = lib.licenses.mit; 24 + maintainers = with lib.maintainers; [ drupol ]; 25 + mainProgram = "mcphost"; 26 + }; 27 + })