Pi는 코어를 작게 유지합니다. 프로덕션이 하나의 도구에 담깁니다.
Pi 채팅에 이 내용을 붙여넣으세요
나머지는 Pi가 처리합니다.
## 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-pi | bash It installs the Polylane CLI, registers the Polylane MCP server in Pi and every other detected coding agent, and signs the user in. To wire MCP by hand instead: an entry in ~/.pi/agent/mcp.json under "mcpServers". 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/pi.md
왜 Polylane을 거쳐야 할까요. 더 적은 서버, 하나의 로그인, Code mode.
-
MCP 서버는 하나, 열 개가 아닙니다
Polylane은 클라우드, 텔레메트리, 배포, 코드를 소수의 도구 뒤에 통합합니다. 제공자별 서버를 여러 개 쌓으면 작업이 시작되기도 전에 컨텍스트 윈도우 대부분이 도구 스키마에 소모되지만, Polylane의 스키마는 도구가 실행될 때 로드됩니다.
-
한 곳에서 처리하는 인증
하나의 로그인으로 모든 제공자를 아우릅니다. 연결과 스코프는 Pi의 설정 곳곳에 흩어진 제공자별 토큰이 아니라 워크스페이스에 저장되며, 연결하는 모든 에이전트가 이를 재사용합니다.
-
Code mode를 위해 설계됨
Pi는 도구를 하나씩 호출하는 대신 runCode로 작은 프로그램을 작성해 샌드박스 안에서 도구들을 연결하고 답만 반환합니다. 중간 결과는 컨텍스트 윈도우에 남지 않습니다.
질문.
Pi는 어떻게 인증하나요?
Pi가 서버를 처음 호출할 때 브라우저에서 OAuth로 인증합니다. CI와 헤드리스 머신의 경우 Settings > Coding agents에서 API 키를 생성한 뒤 서버 항목에 "headers": { "x-api-key": "YOUR_API_KEY" }를 추가하세요.
Pi가 Polylane을 통해 제 인프라를 변경할 수 있나요?
옵트인하지 않는 한 불가능합니다. 자격 증명에 쓰기 스코프가 부여되기 전까지 쓰기 도구는 숨겨져 있으며, 모든 쓰기 작업은 실행 전에 검토를 거칩니다.
Pi가 실제로 조회할 수 있는 것은 무엇인가요?
연결된 모든 제공자의 로그, 메트릭, 트레이스, 컨텍스트 그래프, 배포, 변경 기록, 그리고 전체 REST API까지 Polylane이 아는 모든 것을 조회할 수 있습니다.
Polylane CLI도 필요한가요?
아니요, MCP 서버는 그 자체로 완전한 인터페이스입니다. CLI를 설치하면 polylane setup이 감지하는 모든 코딩 에이전트에도 해당 서버를 등록합니다.