/gptel-mcp.el

Primary LanguageEmacs Lisp

gptel-mcp.el - Interface Integration for gptel.el and mcp.el

https://img.shields.io/badge/License-GPLv3-blue.svg

This package provides seamless integration between gptel and mcp.el, enabling quick mcp server startup and tool management within gptel.

Installation

  1. Requires Emacs 30 or later
  2. Add to your ~/.emacs configuration:
    (add-to-list 'load-path "<path-to-gptel-mcp.el>")
    (require 'gptel-mcp)
        

Usage

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)))