This package provides seamless integration between gptel and mcp.el, enabling quick mcp server startup and tool management within gptel.
- Requires Emacs 30 or later
- Add to your ~/.emacs configuration:
(add-to-list 'load-path "<path-to-gptel-mcp.el>") (require 'gptel-mcp)
Launch the interface menu with gptel-mcp-dispatch
Recommended key binding for gptel-mode-map:
(keymap-set gptel-mode-map "C-c m" #'gptel-mcp-dispatch)
For use-package configuration:
(use-package gptel-mcp
:ensure t
:vc (:url "https://github.com/lizqwerscott/gptel-mcp.el")
:bind (:map gptel-mode-map
("C-c m" . gptel-mcp-dispatch)))