サインアップ ダッシュボード
Pi

Piはコアを小さく保ちます。 本番環境が一つのツールに収まります。

これをPiのチャットに貼り付けます

あとはPiが処理します。

polylane.com/for/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。

  • 10個ではなく1つの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は実際に何をクエリできますか?

Polylaneが把握しているすべてです。接続されているすべてのプロバイダーのログ、メトリクス、トレース、コンテキストグラフ、デプロイメント、変更記録、そして完全なREST APIです。

Polylane CLIも必要ですか?

いいえ、MCPサーバーはそれ単体で完結した機能を提供します。CLIをインストールし、polylane setupを実行すると、検出されたすべてのコーディングエージェントにもそのサーバーが登録されます。

その他のエージェント

Piに本番環境を渡します。 修正を返してくれます。

サインアップ