> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AIを活用したアプリケーションの作成

export const SignupCTA = ({children}) => {
  return <div className="flex flex-wrap items-center gap-4 p-5 rounded-lg border border-gray-200 dark:border-gray-700 my-6" style={{
    background: "linear-gradient(135deg, rgba(0, 97, 213, 0.06), rgba(0, 97, 213, 0.02))"
  }}>
      <div className="flex-1 text-sm leading-relaxed text-gray-700 dark:text-gray-300" style={{
    minWidth: "280px"
  }}>
        {children}
      </div>
      <div className="flex flex-col items-center gap-2">
        <a href="https://account.box.com/signup/developer#ty9l3" className="signup-cta-button inline-flex items-center whitespace-nowrap px-5 py-2 text-sm font-semibold text-white no-underline">
          Get started for free
        </a>
        <a href="https://account.box.com/developers/console" className="signup-cta-login text-xs text-gray-500 dark:text-gray-400 no-underline whitespace-nowrap">
          Already have an account? Log in
        </a>
      </div>
    </div>;
};

BoxでAIを利用したアプリケーションを作成しましょう。MCPやAgent Skillsを使用してAIエージェントをコンテンツに接続したり、Box AI APIを使用してドキュメントインテリジェンスを実現したり、Boxを主要なAIフレームワークと統合したりできます。

<SignupCTA>
  無料のDeveloperアカウントを作成すると、Box AI APIや開発者コンソールなど、AIを活用したワークフローの構築を開始するために必要なすべての機能にアクセスできます。
</SignupCTA>

## BoxとAIエージェントの接続

<CardGroup cols={2}>
  <Card title="Box MCPサーバー" href="/guides/box-mcp/index" icon="server" arrow="true">
    Model Context Protocolを利用して、ClaudeやCopilot StudioといったプラットフォームのエージェントをBoxに接続できます。
  </Card>

  <Card title="Box Agent Skills" href="/ai/agent-skills" icon="graduation-cap" arrow="true">
    AIエージェントにコンテキストを提供することで、Box統合の作成、MCPツールを使用したコンテンツの操作、Webhookの構成、Box AIによる取得が可能になります。
  </Card>
</CardGroup>

[Box CLI](/guides/cli/index)は、エージェント型ツールやハーネスとも連携させることができます。ターミナルを使用して、コンテンツの管理やタスクの自動化、スクリプトワークフローやAIエージェントワークフローへのBoxの統合が可能です。

## 構築と統合

<CardGroup cols={2}>
  <Card title="Box AI API" href="/ai/box-ai-api" icon="sparkles" arrow="true">
    1つのAPIを通じて、ドキュメントの要約、質問への回答、テキストの生成、メタデータの抽出が可能です。Businessプラン以上のすべてのお客様がご利用になれます。
  </Card>

  <Card title="AI統合" href="/ai/integrations" icon="puzzle-piece" arrow="true">
    BoxをLangChain、LlamaIndex、PineconeなどのAIフレームワークに接続して、RAG、ベクトル検索、データパイプラインを実施できます。
  </Card>
</CardGroup>

## チュートリアル

Boxの複数のAI機能を組み合わせ、本番環境ですぐに利用可能なソリューションへと導く、エンドツーエンドの詳しいガイド。

<CardGroup cols={2}>
  <Card title="請求書の取り込み自動化" href="/guides/tutorials/invoice-intake" icon="file-invoice" arrow="true">
    フォルダ内の新規請求書を監視し、Box AIを使用して構造化されたフィールドを抽出して、各ファイルにメタデータを書き戻します。
  </Card>

  <Card title="営業用RFP回答集" href="/guides/tutorials/sales-rfp-answer-bank" icon="magnifying-glass" arrow="true">
    Box HubsでAI搭載のナレッジベースを構築し、営業担当者が承認済みの提案書を自然言語で照会できるようにします。
  </Card>
</CardGroup>
