같은 protocol, Gemini 관점
Gemini 가 Claude Code 와 Codex 처럼 MCP 구현. gemini mcp add 가 server 등록; transport 가 stdio / HTTP; scope 가 user / project. 가용 server 카탈로그 (Sentry, GitHub, Notion, Slack, Postgres 등) 가 동일 — standard 의 핵심 포인트.
~14 min · gemini, mcp, integrations
Gemini 가 Claude Code 와 Codex 처럼 MCP 구현. gemini mcp add 가 server 등록; transport 가 stdio / HTTP; scope 가 user / project. 가용 server 카탈로그 (Sentry, GitHub, Notion, Slack, Postgres 등) 가 동일 — standard 의 핵심 포인트.
# HTTP servers
gemini mcp add --transport http github https://api.githubcopilot.com/mcp/
gemini mcp add --transport http sentry https://mcp.sentry.dev/mcp
# Local stdio server
gemini mcp add --transport stdio db -- npx -y @bytebase/dbhub \
--dsn "postgresql://readonly:pw@localhost:5432/analytics"
# OAuth from inside the REPL
gemini
> /mcp
# List
gemini mcp list{
"mcpServers": {
"github": { "type": "http", "url": "https://api.githubcopilot.com/mcp/" },
"sentry": { "type": "http", "url": "https://mcp.sentry.dev/mcp" },
"db": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@bytebase/dbhub", "--dsn", "${DATABASE_URL}"]
}
}
}아직 댓글이 없어요. 첫 댓글을 남겨보세요.