gnu: Add emacs-mcp.

* gnu/packages/emacs-xyz.scm (emacs-mcp): New variable.

Change-Id: Ibe9136c2f6cd4a48de1c6d524f37c170b6fb7173
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Cayetano Santos 2025-07-28 11:19:24 +02:00 committed by Liliana Marie Prikler
parent c50365d594
commit afb919c003
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -2439,6 +2439,33 @@ games. Malyon plays version 3 (.z3), version 5 (.z5), and version 8 (.z8) z
code files.")
(license license:expat)))
(define-public emacs-mcp
;; No releases available.
(let ((commit "4708c5849ce4ddb632016eca662a7405bfa642d4")
(revision "0"))
(package
(name "emacs-mcp")
(version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lizqwerscott/mcp.el/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"11x3jscm4iggyy926aidiv95lrbcncngbvivsybvzjvbhdxhb65h"))))
(build-system emacs-build-system)
(arguments (list #:tests? #f)) ;no tests
(inputs (list emacs-jsonrpc))
(home-page "https://github.com/lizqwerscott/mcp.el/")
(synopsis "Emacs interface to MCP protocol")
(description "@code{emacs-mcp} is an Emacs client providing structured
communication to @acronym{Model Context Protocol, MCP} servers, with Support
for filesystem and generic servers.")
(license license:gpl3+))))
(define-public emacs-mct
(package
(name "emacs-mct")