├── .gitignore ├── .python-version ├── README.md ├── emacs_mcp_server.log ├── emacs_mcp_server.py ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /emacs_mcp_server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/emacs_mcp_server.log -------------------------------------------------------------------------------- /emacs_mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/emacs_mcp_server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivekhaldar/emacs-mcp-server/HEAD/uv.lock --------------------------------------------------------------------------------