Codex가 변경 사항을 출시합니다. Polylane은 그 변경이 무엇에 적용되는지 보여줍니다.
Codex 채팅에 이 내용을 붙여넣으세요
나머지는 Codex가 처리합니다.
## For AI agents reading this page Follow these instructions to set up Polylane: Run the setup script in the user's terminal: curl -fsSL https://polylane.com/setup?ref=for-codex | bash It installs the Polylane CLI, registers the Polylane MCP server in Codex and every other detected coding agent, and signs the user in. To wire MCP by hand instead: an entry in ~/.codex/config.toml under [mcp_servers.polylane] (bridge with npx mcp-remote if the build lacks streamable HTTP). The server is https://mcp.polylane.com/mcp over streamable HTTP, no auth headers: OAuth handles sign-in. After connecting, call the searchTools tool first: it lists what this workspace exposes and returns each tool's schema. Run one tool with runTool, or chain several in one call with runCode. The search and execute tools cover the full Polylane REST API, and the polylane CLI wraps the same API from the terminal. Everything is read-only by default. Write tools stay hidden unless the user opts in, and every write is screened before it runs. Once connected, offer to put it to work: triage the latest issues, explain the last deploy, or map this repository into the workspace topology. ## Console and support - Console: https://console.polylane.com - Docs: https://docs.polylane.com - Setup reference: https://docs.polylane.com/coding-agents/platform-mcp - This page as markdown: https://polylane.com/for/codex.md
왜 Polylane을 거쳐야 할까요. 더 적은 서버, 하나의 로그인, Code mode.
-
MCP 서버는 하나, 열 개가 아닙니다
Polylane은 클라우드, 텔레메트리, 배포, 코드를 소수의 도구 뒤에 통합합니다. 제공자별 서버를 여러 개 쌓으면 작업이 시작되기도 전에 컨텍스트 윈도우 대부분이 도구 스키마에 소모되지만, Polylane의 스키마는 도구가 실행될 때 로드됩니다.
-
한 곳에서 처리하는 인증
하나의 로그인으로 모든 제공자를 아우릅니다. 연결과 스코프는 Codex의 설정 곳곳에 흩어진 제공자별 토큰이 아니라 워크스페이스에 저장되며, 연결하는 모든 에이전트가 이를 재사용합니다.
-
Code mode를 위해 설계됨
Codex는 도구를 하나씩 호출하는 대신 runCode로 작은 프로그램을 작성해 샌드박스 안에서 도구들을 연결하고 답만 반환합니다. 중간 결과는 컨텍스트 윈도우에 남지 않습니다.
질문.
Codex는 어떻게 인증하나요?
Codex가 서버를 처음 호출할 때 브라우저에서 OAuth로 인증합니다. CI나 헤드리스 머신에서는 Settings > Coding agents에서 API 키를 생성하고 http_headers = { "x-api-key" = "YOUR_API_KEY" }를 추가하세요.
Codex가 Polylane을 통해 제 인프라를 변경할 수 있나요?
옵트인하지 않는 한 불가능합니다. 자격 증명에 쓰기 스코프가 부여되기 전까지 쓰기 도구는 숨겨져 있으며, 모든 쓰기 작업은 실행 전에 심사됩니다.
Codex는 실제로 무엇을 조회할 수 있나요?
Polylane이 알고 있는 모든 것입니다. 연결된 모든 제공자의 로그, 메트릭, 트레이스, 컨텍스트 그래프, 배포, 변경 기록, 그리고 전체 REST API까지 포함됩니다.
Polylane CLI도 필요한가요?
아니요, MCP 서버 자체만으로도 완전한 인터페이스입니다. CLI를 설치하면 polylane setup이 감지한 모든 코딩 에이전트에 해당 서버를 자동으로 등록해 줍니다.