구글 안티그래비티 완전 분석 — 모델·요금제·CLI 총정리

🚀 구글 안티그래비티(Antigravity) 완전 분석 구글이 2025년 11월 Gemini 3와 함께 공개한 에이전트 퍼스트(agent-first) IDE 안티그래비티는 Claude·GPT·Gemini를 한 도구에서 골라 쓰는 멀티모델 코딩 환경이다. 이 글에서는 ① 지원 모델과 요금제별 사용량의 실체, ② 실사용자 평가, ③ 구글의 방향성, ④ Claude Code와의 비교·연계, ⑤ CLI( agy )로 직접 쓰는 법까지 다섯 갈래를 차례로 정리한다. 자료 간 충돌이 있는 지점은 한쪽으로 단정하지 않고 양쪽을 모두 살려 표기했다. 📅 기준 시점: 2026년 6월 · 프리뷰 단계 정보로 수치는 변동 가능 1. 안티그래비티란 무엇인가 — 기초 정리 안티그래비티는 2025년 7월 구글이 24억 달러 규모 라이선스 계약 으로 영입한 전 Windsurf 팀이 설계를 주도했다. VSCode를 포크한 위에 자율 에이전트 오케스트레이션 계층을 얹은 구조다. 2026년 5월 Google I/O에서 발표된 안티그래비티 2.0 은 데스크탑 앱과 함께 공식 CLI agy 를 처음 공개하며 기존 Gemini CLI의 공식 후계자 자리를 확정했다. 핵심 정체성은 단순 코드 자동완성이 아니라 병렬 에이전트 오케스트레이션 이다. 여러 에이전트가 동시에 — 하나는 API, 하나는 테스트, 또 하나는 프론트엔드 — 작업을 나눠 진행하고, 각 에이전트는 계획·테스트 결과·스크린샷·영상을 담은 Artifact 를 남긴다. "사람이 한 줄씩 승인"하는 방식이 아니라 "에이전트들이 일을 마치고 사람이 사후 검수"하는 모델이다. flowchart TD A([사용자 작업 지시]) --> B[에이전트 A API 구현] A --> C[에이전트 B 테스트 작성] A --> D[에이전트 C UI 생성] B --> E[Artifact 계획·결과·영상] C --> E D --> E...

Unlocking Claude Code's Potential with the Model Context Protocol (MCP)

Claude Code Goes Beyond Code: Understanding the Model Context Protocol (MCP)

Claude Code is evolving from a powerful coding assistant into a sophisticated workflow engine, thanks to a groundbreaking innovation: the Model Context Protocol (MCP). This isn't just about writing better code; it's about enabling AI to understand and interact with the real world of software development in a much deeper, more integrated way.

What is the Model Context Protocol (MCP)?

At its core, MCP is an open-source standard that allows AI applications, like Claude Code, to communicate with a wide array of external systems. Think of it as a universal translator and connector for AI. MCP enables Claude Code to tap into tools such as issue trackers, databases, APIs, design platforms, and even local scripts. This capability transforms Claude from an isolated code generator into an intelligent agent capable of understanding complex requirements, accessing relevant data, and performing actions across different development tools.

How Does MCP Work?

The MCP follows a flexible client-server architecture:

  1. MCP Host: This is the AI application itself – for instance, Claude Code or Claude Desktop – that initiates and manages connections.
  2. MCP Client: A component within the host that establishes and maintains a dedicated connection to an MCP server, fetching context for the AI.
  3. MCP Server: This acts as a gateway. It can run locally or remotely, providing the AI with context and, crucially, executable tools and accessible resources.

MCP defines two fundamental primitives that servers can expose:

  • Tools: These are executable functions that the AI can invoke to perform actions. Examples include reading/writing files, querying databases, making API calls, or running custom scripts.
  • Resources: These are data sources that the AI can query for contextual information. This could be the content of a file, records from a database, responses from an API, or even design specifications from a platform like Figma.

Why MCP Matters for Claude Code

The integration of MCP unlocks a new level of capability for Claude Code:

  • Deeper Understanding of Requirements: By connecting to issue trackers (like JIRA) or project management tools, Claude can now grasp the full context of a task, including specific variables, functions, and objectives, leading to more accurate and relevant code.
  • Access to Real-World Data: Claude can query databases, analyze monitoring data from services like Sentry, and even pull designs from Figma. This rich context allows it to generate code that is more aligned with existing systems and user needs.
  • Automated Workflow Execution: MCP empowers Claude to go beyond suggestions. It can implement features directly from issue tickets, create pull requests on GitHub, update project templates based on design files, and automate various routine development tasks.
  • Improved Code Quality and Architecture: With a broader understanding of the codebase and its architectural patterns, Claude can generate code that adheres better to team conventions, scales effectively, and helps mitigate technical debt. It can even identify and suggest refactoring for architectural antipatterns.
  • Enhanced Code Comprehension: By connecting to tools that generate architecture diagrams, class diagrams, or sequence diagrams, Claude can visualize complex systems, making it easier to understand and work with large or unfamiliar codebases.

Real-World Applications and Examples

Imagine these scenarios powered by MCP:

  • Feature Implementation: Claude reads a JIRA ticket, understands the required user story, fetches the relevant design specs from Figma, writes the frontend code using React components, and then automatically opens a GitHub pull request for review.
  • Bug Fixing: Claude analyzes error reports from Sentry, identifies the problematic code in your repository by accessing local files, proposes a fix, and generates a patch.
  • Data Integration: Claude connects to a database, fetches specific user data, and generates an API endpoint to serve that data, ensuring it aligns with existing API schemas.

In essence, the MCP concept transforms Claude Code into a truly intelligent and integrated development partner, capable of not just writing code, but actively participating in and driving complex software development workflows.

📚 참고 자료

댓글

이 블로그의 인기 게시물

Vim 9.2 릴리즈 총정리: 더 빠르고 강력해진 텍스트 편집의 제왕

폐쇄망 SoC 설계자를 위한 가볍고 빠른 Vim 최적화 가이드

에이전트 시대를 위한 터미널 cmux 가이드: 설치부터 AI 활용까지