MCP Hub
Back to servers

Antigravity Agent Config

Provides tools to manage, initialize, and synchronize standardized agent configurations and specialized workflows across various projects. It enables AI agents to access global rules and role-specific guidelines for development, design, and planning via the Model Context Protocol.

Updated
Feb 18, 2026

@antigravity/agent-config

Antigravity 에이전트 설정을 MCP (Model Context Protocol) 서버로 제공하는 패키지입니다.

기능

도구설명
list_configs사용 가능한 모든 설정 목록
get_config특정 설정 파일 내용 조회
init_project새 프로젝트에 표준 설정 설치 (AGENTS.md + GEMINI.md + 10 workflows)
sync_workflows기존 프로젝트의 워크플로우를 최신 버전으로 동기화
check_project프로젝트의 에이전트 설정 상태 진단

설치 및 사용

Gemini Code Assist 설정

~/.gemini/settings.json에 추가:

{
  "mcpServers": {
    "antigravity-config": {
      "command": "node",
      "args": ["/path/to/harmonic-flare/dist/index.js"]
    }
  }
}

Claude Desktop 설정

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "antigravity-config": {
      "command": "node",
      "args": ["/path/to/harmonic-flare/dist/index.js"]
    }
  }
}

번들 내용

configs/
├── global/
│   ├── AGENTS.md      # 글로벌 에이전트 규칙
│   └── GEMINI.md      # Gemini 전용 보충
└── workflows/
    ├── dev.md                      # 🔧 개발 파트너
    ├── design.md                   # 🎨 디자인 파트너
    ├── marketing.md                # 📈 마케팅 파트너
    ├── planning.md                 # 📋 기획 파트너
    ├── verify-build.md             # 빌드 검증
    ├── code-quality-guidelines.md  # 코드 품질
    ├── code-simplifier.md          # 코드 간소화
    ├── prompt-optimizer.md         # 프롬프트 최적화
    ├── security-auditor.md         # 보안 감사
    └── ui-reviewer.md              # UI 리뷰

업데이트

configs/ 디렉토리의 파일을 수정하고 npm run build 후 재시작하면 모든 연결된 에이전트가 최신 설정을 사용합니다.

Reviews

No reviews yet

Sign in to write a review