이 노트에 대하여

Anthropic의 Claude Code와 Emacs 통합 패키지 claude-code.el을 함께 살펴본다. 터미널 기반 에이전틱 코딩과 MCP, Emacs 워크플로우가 어디서 만나는지 잘 드러난다.

History

프롬프트

이맥스 통합: claude-code.el

Stevemolitor/Claude-Code.El

(“Stevemolitor/Claude-Code.El” 2025) Molitor, Steve 2025 Claude Code Emacs integration

;; install claude-code.el, using :depth 1 to reduce download size:
(use-package claude-code
  :straight (:type git :host github :repo "stevemolitor/claude-code.el" :branch "main" :depth 1
             :files ("*.el" (:exclude "images/*")))
  :bind-keymap
  ("C-c c" . claude-code-command-map) ;; or your preferred key
  :config
  (claude-code-mode))

anthropics/claude-code

(“Anthropics/Claude-Code” 2025)

  • Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
  • https://github.com/anthropics/claude-code
npm install -g @anthropic-ai/claude-code

Introducing Claude Code - YouTube

https://www.youtube.com/watch?v=AJpK3YTTKZ4

Introducing the Model Context Protocol (mcp)

(Anthropic 2024)

  • Anthropic
  • The Model Context Protocol (MCP) is an open standard for connecting AI assistants to the systems where data lives, including content repositories, business tools, and development environments. Its aim is to help frontier models produce better, more relevant responses.
  • 2024

관련노트

BIBLIOGRAPHY

Anthropic. 2024. “Introducing the Model Context Protocol (Mcp).” 2024. https://www.anthropic.com/news/model-context-protocol.

“Anthropics/Claude-Code.” 2025. https://github.com/anthropics/claude-code.

“Stevemolitor/Claude-Code.El.” 2025. https://github.com/stevemolitor/claude-code.el.