diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-07-28 11:19:24 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-08-22 21:53:18 +0200 |
| commit | afb919c00379e16e64c00f2c313ca4510b267cf5 (patch) | |
| tree | e09d5ae99e7ab0fda71e284167af148c29fdd771 /gnu | |
| parent | c50365d5941b73482f48e430ae632a940021ed1c (diff) | |
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>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 55c337b85e2..2361c770957 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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") |
