guix_mirror_bot pushed a commit to branch master
in repository guix.

commit db9080a0388a7e0637cef62a213ac5a94ea21fbe
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue Sep 15 18:25:19 2026 +0200

    gnu: Add go-github-com-mark3labs-mcp-go.
    
    * gnu/packages/golang-web.scm (go-github-com-mark3labs-mcp-go): New 
variable.
    
    Relates-to: guix/guix!11226, guix/guix!11258
    Reviewed-by: Orahcio FelĂ­cio de Sousa <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 19de638fbc2..44d536d0300 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -14735,6 +14735,34 @@ clients that speak the Gemini protocol.")
 @@url{https://github.com/makeworld-the-better-one/go-gemini,go-gemini}.";)
     (license license:expat)))
 
+(define-public go-github-com-mark3labs-mcp-go
+  (package
+    (name "go-github-com-mark3labs-mcp-go")
+    (version "0.8.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mark3labs/mcp-go";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ijd4cj6nqsqr4fds0ckjjl2hvid71w28fp3dcsjamgggy303mgx"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/mark3labs/mcp-go"
+      #:skip-build? #t))
+    (propagated-inputs (list go-github-com-google-uuid))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/mark3labs/mcp-go";)
+    (synopsis "Model Context Protocol implementation in Go")
+    (description
+     "This package implements the Model Context Protocol, including clients and
+servers using standard transports.")
+    (license license:expat)))
+
 (define-public go-github-com-markbates-goth
   (package
     (name "go-github-com-markbates-goth")

Reply via email to