<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JSON-RPC &#8211; 小人物看世界</title>
	<atom:link href="https://blog.che-ya.com/tag/json-rpc/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.che-ya.com</link>
	<description>軟體工程師的技術筆記</description>
	<lastBuildDate>Wed, 08 Apr 2026 08:06:50 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.che-ya.com/wp-content/uploads/2021/08/cropped-APP_icon-32x32.png</url>
	<title>JSON-RPC &#8211; 小人物看世界</title>
	<link>https://blog.che-ya.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>MCP 協議：連接 AI 與外部世界的橋樑</title>
		<link>https://blog.che-ya.com/mcp-protocol-introduction/</link>
		
		<dc:creator><![CDATA[ㄚ槌]]></dc:creator>
		<pubDate>Mon, 27 Apr 2026 03:57:00 +0000</pubDate>
				<category><![CDATA[MCP Server]]></category>
		<category><![CDATA[Claude Code]]></category>
		<category><![CDATA[AI 編程工具]]></category>
		<category><![CDATA[Anthropic]]></category>
		<category><![CDATA[JSON-RPC]]></category>
		<category><![CDATA[MCP]]></category>
		<category><![CDATA[Model Context Protocol]]></category>
		<guid isPermaLink="false">https://blog.che-ya.com/?p=845</guid>

					<description><![CDATA[當你在 Claude Code 中輸入一句話，Claude 能夠讀取檔案、執行指令、查詢資料庫、甚至操作 Gi ... <a title="MCP 協議：連接 AI 與外部世界的橋樑" class="read-more" href="https://blog.che-ya.com/mcp-protocol-introduction/" aria-label="Read more about MCP 協議：連接 AI 與外部世界的橋樑">閱讀全文</a>]]></description>
										<content:encoded><![CDATA[
<p>當你在 Claude Code 中輸入一句話，Claude 能夠讀取檔案、執行指令、查詢資料庫、甚至操作 GitHub——這一切的背後，都依賴一個關鍵的開放標準：Model Context Protocol（MCP）。MCP 是 Anthropic 於 2024 年 11 月發布的開源協議，定義了 AI 模型與外部工具之間的標準化通訊方式。如果說 USB 統一了硬體介面，HTTP 統一了網頁通訊，那麼 MCP 就是要統一 AI 與工具之間的溝通方式。本文將帶你從零開始理解 MCP 的核心概念、架構設計與運作原理，為後續的實戰應用打下基礎。</p>



<h2 class="wp-block-heading">為什麼需要 MCP？</h2>



<p>在 MCP 出現之前，每個 AI 應用要連接外部工具，都需要自行實作整合邏輯。想讓 AI 讀取 GitHub Issues？你要寫一套 GitHub API 的封裝。想查詢資料庫？你要寫另一套資料庫連線邏輯。這就造成了所謂的「M×N 問題」——如果有 M 個 AI 應用和 N 個工具，就需要 M×N 個客製化整合。</p>



<p>MCP 透過標準化的協議層，將這個 M×N 問題簡化為 M+N。每個 AI 應用只需要實作一次 MCP Client，每個工具只需要包裝成一次 MCP Server，就能互相連接。這就像 USB 的概念——不管是鍵盤、滑鼠還是硬碟，只要支援 USB 介面，就能接上任何電腦。</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>比較項目</th><th>傳統整合方式</th><th>MCP 標準化方式</th></tr></thead><tbody><tr><td>整合數量</td><td>M × N 個客製化實作</td><td>M + N 個標準化實作</td></tr><tr><td>維護成本</td><td>每個整合獨立維護</td><td>統一協議，分別維護</td></tr><tr><td>新增工具</td><td>每個 AI 應用都要更新</td><td>只需新增一個 MCP Server</td></tr><tr><td>新增 AI 應用</td><td>要重寫所有工具整合</td><td>只需實作一個 MCP Client</td></tr><tr><td>安全性</td><td>各自實作，標準不一</td><td>協議層統一處理權限控制</td></tr></tbody></table></figure>



<h2 class="wp-block-heading">MCP 的核心架構</h2>



<p>MCP 採用經典的 Client-Server 架構，但加入了 Host 的概念來管理整個生態系。理解這三個角色的關係，是掌握 MCP 的第一步。</p>



<h3 class="wp-block-heading">三大角色：Host、Client、Server</h3>



<p><strong>Host（宿主）</strong>是使用者直接互動的 AI 應用程式，例如 Claude Code、Claude Desktop App 或任何整合了 LLM 的 IDE。Host 負責管理 LLM 實例、建立 MCP Client、控制安全與權限，並協調多個 MCP 連線。</p>



<p><strong>Client（客戶端）</strong>是由 Host 建立的協議端點，每個 Client 與一個 Server 維持一對一的連線。Client 負責處理訊息的路由、能力的協商，以及訂閱管理。在 Claude Code 中，每當你新增一個 MCP Server，系統就會自動建立一個對應的 Client。</p>



<p><strong>Server（伺服器）</strong>是實際提供工具與資料的程式。Server 可以是一個 Node.js 腳本、Python 程式、或遠端 HTTP 服務。每個 Server 透過 MCP 協議暴露自己的能力（tools、resources、prompts），讓 AI 模型可以呼叫使用。</p>



<h3 class="wp-block-heading">協議層架構</h3>



<figure class="wp-block-image size-large"><img decoding="async" src="https://blog.che-ya.com/wp-content/uploads/2026/04/mcp-protocol-architecture.png" alt="MCP 協議層架構圖：Application Layer、Protocol Layer、Transport Layer" class="wp-image-853"/><figcaption class="wp-element-caption">MCP 協議層架構：應用層、協議層、傳輸層三層架構</figcaption></figure>



<h2 class="wp-block-heading">三大核心原語：Tools、Resources、Prompts</h2>



<p>MCP Server 透過三種核心原語向 AI 暴露自己的能力。理解它們的差異，有助於你判斷什麼時候該用哪一種，以及如何設計自己的 MCP Server。</p>



<h3 class="wp-block-heading">Tools（工具）：讓 AI 執行動作</h3>



<p>Tools 是 MCP 中最常用的原語，代表 AI 可以呼叫的可執行函式。每個 Tool 都有名稱、描述和輸入參數的 JSON Schema 定義。當 AI 判斷需要使用某個 Tool 時，會自動傳入適當的參數並等待結果。</p>



<p>舉例來說，一個 GitHub MCP Server 可能暴露這些 Tools：</p>



<pre class="wp-block-code"><code class="">// Tool 定義範例
{
  "name": "create_issue",
  "description": "在 GitHub 儲存庫中建立一個新的 Issue",
  "inputSchema": {
    "type": "object",
    "properties": {
      "repo": {
        "type": "string",
        "description": "儲存庫名稱，格式為 owner/repo"
      },
      "title": {
        "type": "string",
        "description": "Issue 標題"
      },
      "body": {
        "type": "string",
        "description": "Issue 內容（支援 Markdown）"
      }
    },
    "required": ["repo", "title"]
  }
}</code></pre>



<p>如果把 MCP 想像成一家餐廳，Tools 就是菜單上的菜——你可以點什麼、需要提供什麼資訊（幾分熟、要不要辣），都清楚定義好了。</p>



<h3 class="wp-block-heading">Resources（資源）：讓 AI 讀取資料</h3>



<p>Resources 代表 MCP Server 可以提供的資料來源。與 Tools 不同，Resources 是唯讀的——AI 可以讀取資料，但不會觸發任何副作用。每個 Resource 都有一個 URI 來識別，內容可以是文字或二進位資料。</p>



<pre class="wp-block-code"><code class="">// Resource 範例
{
  "uri": "file:///project/src/config.json",
  "name": "專案設定檔",
  "description": "目前專案的 JSON 設定內容",
  "mimeType": "application/json"
}</code></pre>



<p>繼續用餐廳的比喻，Resources 就是餐廳提供的菜單、酒單、今日特餐公告板——你可以看、可以參考，但不會改變任何東西。</p>



<h3 class="wp-block-heading">Prompts（提示模板）：預設的互動模式</h3>



<p>Prompts 是預先定義好的互動模板，讓使用者可以快速啟動常見的工作流程。Prompts 可以包含固定的指令文字和動態的參數，由使用者觸發（而非 AI 自動決定）。</p>



<pre class="wp-block-code"><code class="">// Prompt 範例
{
  "name": "code_review",
  "description": "對指定的 Pull Request 進行程式碼審查",
  "arguments": [
    {
      "name": "pr_number",
      "description": "Pull Request 編號",
      "required": true
    },
    {
      "name": "focus_area",
      "description": "審查重點（如安全性、效能、可讀性）",
      "required": false
    }
  ]
}</code></pre>



<p>Prompts 就像餐廳的套餐——廚師已經幫你搭配好了主餐、配菜和甜點，你只需要選擇要幾人份就好。</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>特性</th><th>Tools</th><th>Resources</th><th>Prompts</th></tr></thead><tbody><tr><td>觸發方式</td><td>AI 模型自動決定</td><td>應用程式或 AI 請求</td><td>使用者手動觸發</td></tr><tr><td>副作用</td><td>有（可執行操作）</td><td>無（唯讀）</td><td>無（模板而已）</td></tr><tr><td>類比</td><td>餐廳的菜</td><td>菜單和公告板</td><td>套餐組合</td></tr><tr><td>常見用途</td><td>API 呼叫、檔案操作</td><td>讀取檔案、查詢資料</td><td>Code Review、摘要</td></tr></tbody></table></figure>



<h2 class="wp-block-heading">傳輸機制：stdio 與 Streamable HTTP</h2>



<p>MCP 定義了兩種主要的傳輸機制，分別適用於不同的使用場景。選擇正確的傳輸方式，直接影響 MCP Server 的部署方式和效能特性。</p>



<h3 class="wp-block-heading">stdio：本地執行的首選</h3>



<p>stdio（Standard Input/Output）傳輸是最簡單的方式。Client 啟動 Server 作為子程序，透過標準輸入（stdin）和標準輸出（stdout）交換 JSON-RPC 訊息。每條訊息以換行符號分隔。</p>



<pre class="wp-block-code"><code class=""># 在 Claude Code 中新增一個 stdio 類型的 MCP Server
claude mcp add --transport stdio my-db-server -- npx -y @example/db-server

# 帶環境變數的版本
claude mcp add --transport stdio --env DB_URL=postgresql://localhost/mydb \
  my-db-server -- npx -y @example/db-server</code></pre>



<p>stdio 的優點是延遲極低（不需要網路傳輸）、設定簡單，且天然支援安全隔離（因為只在本機執行）。缺點是無法跨機器使用，Server 的生命週期綁定在 Host 程式上。</p>



<h3 class="wp-block-heading">Streamable HTTP：遠端服務的標準</h3>



<p>Streamable HTTP 是 MCP 規格在 2025 年 3 月更新後推薦的遠端傳輸方式，取代了先前的 SSE（Server-Sent Events）傳輸。它透過標準的 HTTP 請求進行通訊，並可選擇性地使用 SSE 來串流回應。</p>



<pre class="wp-block-code"><code class=""># 在 Claude Code 中新增一個 HTTP 類型的 MCP Server
claude mcp add --transport http notion https://mcp.notion.com/mcp

# 帶認證的版本
claude mcp add --transport http secure-api https://api.example.com/mcp \
  --header "Authorization: Bearer your-token"</code></pre>



<p>Streamable HTTP 的優點是可以跨網路使用、支援多用戶共享同一個 Server、容易部署在雲端環境。缺點是需要處理網路延遲和認證機制。</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>比較項目</th><th>stdio</th><th>Streamable HTTP</th></tr></thead><tbody><tr><td>執行環境</td><td>本地子程序</td><td>遠端 HTTP 服務</td></tr><tr><td>延遲</td><td>極低</td><td>取決於網路</td></tr><tr><td>跨機器存取</td><td>不支援</td><td>支援</td></tr><tr><td>多用戶共享</td><td>不支援</td><td>支援</td></tr><tr><td>適用場景</td><td>本地工具、腳本</td><td>雲端 API、SaaS 服務</td></tr><tr><td>安全性</td><td>本機隔離</td><td>需處理認證與 TLS</td></tr></tbody></table></figure>



<h2 class="wp-block-heading">連線生命週期</h2>



<p>MCP 的連線建立遵循嚴格的初始化流程，確保 Client 和 Server 在開始通訊之前就協商好彼此的能力。</p>



<h3 class="wp-block-heading">初始化流程</h3>



<p>當 Claude Code 啟動或你新增一個 MCP Server 時，會經歷以下步驟：</p>



<figure class="wp-block-table"><table><thead><tr><th>步驟</th><th>動作</th><th>說明</th></tr></thead><tbody><tr><td>1</td><td>Client 發送 <code>initialize</code> 請求</td><td>Client 向 Server 發送初始化請求，包含支援的協議版本與能力（Capabilities）宣告</td></tr><tr><td>2</td><td>Server 回應 <code>initialize</code></td><td>Server 回傳自己支援的協議版本、能力宣告與伺服器資訊</td></tr><tr><td>3</td><td>Client 發送 <code>initialized</code> 通知</td><td>Client 確認初始化完成，通知 Server 已準備就緒</td></tr><tr><td>4</td><td>開始正常通訊</td><td>雙方完成握手，可開始進行 Tool 呼叫、Resource 讀取等正常操作</td></tr></tbody></table></figure>



<p>在初始化階段，Client 和 Server 會交換各自支援的協議版本和能力（Capabilities）。例如，Server 可能宣告它支援 tools 和 resources，但不支援 prompts。Client 則可能宣告它支援 sampling（讓 Server 請求 AI 模型進行推理）和 roots（提供檔案系統存取點）。</p>



<h3 class="wp-block-heading">訊息交換模式</h3>



<p>初始化完成後，MCP 支援三種訊息交換模式：</p>



<p><strong>Request-Response（請求-回應）</strong>：Client 發送請求，Server 回傳結果。例如呼叫一個 Tool 或讀取一個 Resource。每個 Request 都帶有唯一的 ID，用來配對對應的 Response。</p>



<p><strong>Notification（通知）</strong>：單向訊息，不需要回應。例如 Server 通知 Client 它的 Tool 列表已更新（list_changed），或 Client 通知 Server 某個 Root 已變更。</p>



<p><strong>Progress（進度）</strong>：長時間執行的操作可以回報進度，讓使用者知道目前的處理狀態。這對需要幾秒鐘以上才能完成的 Tool 來說特別實用。</p>



<h2 class="wp-block-heading">在 Claude Code 中設定 MCP Server</h2>



<p>理解了 MCP 的架構概念後，讓我們來看看如何在 Claude Code 中實際設定和使用 MCP Server。Claude Code 提供了簡潔的 CLI 指令來管理 MCP 連線。</p>



<h3 class="wp-block-heading">新增 MCP Server</h3>



<p>Claude Code 支援三種方式新增 MCP Server：</p>



<pre class="wp-block-code"><code class=""># 方式一：新增遠端 HTTP Server（推薦用於雲端服務）
claude mcp add --transport http notion https://mcp.notion.com/mcp

# 方式二：新增本地 stdio Server
claude mcp add --transport stdio my-server -- npx -y @example/mcp-server

# 方式三：新增 SSE Server（已棄用，建議改用 HTTP）
claude mcp add --transport sse legacy-api https://api.example.com/sse</code></pre>



<p>注意指令的語法規則：所有選項（<code>--transport</code>、<code>--env</code>、<code>--scope</code>、<code>--header</code>）必須放在 Server 名稱<strong>之前</strong>，<code>--</code>（雙破折號）用來分隔 Server 名稱和要傳給 Server 的命令及參數。</p>



<h3 class="wp-block-heading">三種設定範圍（Scope）</h3>



<p>MCP Server 的設定可以儲存在不同的範圍，決定了它的可見性和共享方式：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>範圍</th><th>儲存位置</th><th>適用場景</th><th>指令範例</th></tr></thead><tbody><tr><td>local（預設）</td><td><code>~/.claude.json</code></td><td>個人在特定專案使用的 Server</td><td><code>claude mcp add --scope local ...</code></td></tr><tr><td>project</td><td>專案根目錄的 <code>.mcp.json</code></td><td>團隊共享，可加入版本控制</td><td><code>claude mcp add --scope project ...</code></td></tr><tr><td>user</td><td><code>~/.claude.json</code></td><td>個人跨專案使用的 Server</td><td><code>claude mcp add --scope user ...</code></td></tr></tbody></table></figure>



<p>如果你的團隊需要共用相同的 MCP Server，使用 <code>project</code> scope 是最佳選擇。設定會儲存在 <code>.mcp.json</code> 檔案中，團隊成員只要 pull 最新的程式碼就能自動取得 MCP 設定。</p>



<h3 class="wp-block-heading">管理與除錯</h3>



<pre class="wp-block-code"><code class=""># 列出所有已設定的 MCP Server
claude mcp list

# 查看特定 Server 的設定細節
claude mcp get github

# 移除一個 MCP Server
claude mcp remove github

# 在 Claude Code 互動模式中檢查 Server 狀態
/mcp</code></pre>



<p>在 Claude Code 的互動模式中輸入 <code>/mcp</code>，可以看到所有 MCP Server 的連線狀態、可用的 Tools 數量，以及是否有錯誤發生。如果某個 Server 顯示為斷線狀態，可以嘗試重新啟動 Claude Code 或檢查 Server 的執行環境。</p>



<h2 class="wp-block-heading">Tool Search：智慧型工具載入</h2>



<p>當你連接了大量 MCP Server 後，所有 Tool 的定義加起來可能佔用數萬個 Token 的 Context。Claude Code 內建的 Tool Search 功能透過智慧索引和動態載入，只在需要時才載入相關的 Tool 定義，將 Context 消耗從約 72,000 Token 降低到約 8,700 Token——減少了約 85%。</p>



<p>Tool Search 是自動運作的，你不需要做任何設定。當你向 Claude 提出請求時，它會根據語意搜尋最相關的 Tools 來使用，就像搜尋引擎一樣。這意味著即使你連接了幾十個 MCP Server、數百個 Tools，Claude 的效能和成本也不會受到顯著影響。</p>



<h2 class="wp-block-heading">MCP 的安全性考量</h2>



<p>使用 MCP Server 時，安全性是必須重視的議題。以下是幾個關鍵的安全原則：</p>



<p><strong>審慎選擇 Server 來源</strong>：只安裝你信任的 MCP Server。第三方 Server 可能含有未經驗證的程式碼，尤其是那些需要存取敏感資料的 Server。官方推薦的 Server 列表是最安全的起點。</p>



<p><strong>注意 Prompt Injection 風險</strong>：如果 MCP Server 會抓取不受信任的外部內容（例如網頁、電子郵件），這些內容可能包含惡意的指令注入。Claude Code 有內建的安全機制來防範，但你仍應該對 Server 回傳的內容保持警覺。</p>



<p><strong>妥善管理認證資訊</strong>：使用 <code>--env</code> 參數傳遞 API Key 和認證 Token，避免將敏感資訊直接寫在 <code>.mcp.json</code> 中（因為這個檔案可能會被加入版本控制）。對於需要 OAuth 2.0 認證的遠端 Server，可以在 Claude Code 中使用 <code>/mcp</code> 指令來完成認證流程。</p>



<p><strong>善用 Project Scope 的安全機制</strong>：當 Claude Code 偵測到 <code>.mcp.json</code> 中的 Project Scope Server 時，會提示你確認是否信任這些 Server，這是一道額外的安全防線。如果需要重設這些選擇，可以使用 <code>claude mcp reset-project-choices</code> 指令。</p>



<h2 class="wp-block-heading">MCP 生態系的現況與發展</h2>



<p>MCP 自 2024 年 11 月發布以來，已經從 Anthropic 的內部實驗快速發展成為業界標準。2025 年 3 月，OpenAI 正式採用 MCP，將其整合到 ChatGPT Desktop App 中。同年 12 月，Anthropic 將 MCP 捐贈給 Linux Foundation 旗下的 Agentic AI Foundation（AAIF），由 Anthropic、Block 和 OpenAI 共同主導，Google 和 Microsoft 也加入支持。</p>



<p>目前，MCP 生態系中已有數百個開源 Server，涵蓋資料庫（PostgreSQL、MySQL）、專案管理（Jira、Asana、Linear）、溝通工具（Slack、Discord）、開發工具（GitHub、GitLab）、設計工具（Figma）等各類服務。Anthropic 也維護了一個<a href="https://github.com/modelcontextprotocol/servers" target="_blank" rel="noopener nofollow">官方 MCP Server 清單</a>，方便開發者查詢和使用。</p>



<p>2025 年 11 月的規格更新帶來了幾個重要的新功能：非同步操作支援、無狀態設計、Server 身分識別機制，以及官方的 MCP Server Registry。這些更新讓 MCP 更適合在生產環境中使用，也為未來的擴展奠定了基礎。</p>



<h2 class="wp-block-heading">實際應用場景</h2>



<p>理解了 MCP 的概念，讓我們看幾個具體的應用場景，感受 MCP 如何改變日常開發流程：</p>



<p><strong>場景一：從 Issue 到 PR 的完整工作流</strong>——連接 Jira MCP Server 和 GitHub MCP Server 後，你可以告訴 Claude：「讀取 JIRA-1234 的需求，在 main 分支上實作，完成後建立 PR 並 tag reviewer。」Claude 會自動讀取 Issue 內容、分析需求、撰寫程式碼、建立 Pull Request，一氣呵成。</p>



<p><strong>場景二：資料庫查詢與分析</strong>——連接 PostgreSQL MCP Server 後，你可以用自然語言查詢資料：「找出上個月註冊但從未登入的使用者，匯出他們的 email 清單。」Claude 會自動撰寫 SQL、執行查詢、整理結果。</p>



<p><strong>場景三：跨工具協作</strong>——同時連接 Slack、Figma 和 GitHub 後，你可以說：「根據 Figma 中最新的設計稿，更新首頁元件，完成後在 Slack 的 #frontend 頻道通知團隊。」Claude 會讀取設計稿、修改程式碼、發送通知，串連多個工具完成複雜的跨平台工作流。</p>



<h2 class="wp-block-heading">下一步：動手連接你的第一個 MCP Server</h2>



<p>本文介紹了 MCP 的核心概念、架構設計、三大原語、傳輸機制和安全考量。MCP 的出現，讓 AI 工具從「聰明的聊天機器人」進化為「能夠操作真實世界的數位助手」。</p>



<p>在下一篇文章中，我們將進入實戰環節——帶你一步步連接常見的 MCP Server，包括 GitHub、Slack、資料庫等，讓 Claude Code 真正成為你的全方位開發夥伴。如果你已經等不及了，可以先試試在 Claude Code 中執行以下指令：</p>



<pre class="wp-block-code"><code class=""># 連接 GitHub MCP Server（需要 GitHub 帳號）
claude mcp add --transport http github https://api.githubcopilot.com/mcp/

# 檢查連線狀態
/mcp</code></pre>



<p>連上之後，試著問 Claude：「列出我最近的 GitHub 通知」——你會發現，AI 與工具之間的溝通，從此變得如此自然。</p>
<div class="saboxplugin-wrap" itemtype="http://schema.org/Person" itemscope itemprop="author"><div class="saboxplugin-tab"><div class="saboxplugin-gravatar"><img alt='ㄚ槌' src='https://secure.gravatar.com/avatar/9914399915f96350f302945e8ddddee1a9b1995350182f513fd2e1fa816c100a?s=100&#038;d=mm&#038;r=g' srcset='https://secure.gravatar.com/avatar/9914399915f96350f302945e8ddddee1a9b1995350182f513fd2e1fa816c100a?s=200&#038;d=mm&#038;r=g 2x' class='avatar avatar-100 photo' height='100' width='100' itemprop="image"/></div><div class="saboxplugin-authorname"><a href="https://blog.che-ya.com/author/a3230230/" class="vcard author" rel="author"><span class="fn">ㄚ槌</span></a></div><div class="saboxplugin-desc"><div itemprop="description"></div></div><div class="saboxplugin-web "><a href="https://blog.che-ya.com" target="_self">blog.che-ya.com</a></div><div class="clearfix"></div></div></div><p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fmcp-protocol-introduction%2F&amp;linkname=MCP%20%E5%8D%94%E8%AD%B0%EF%BC%9A%E9%80%A3%E6%8E%A5%20AI%20%E8%88%87%E5%A4%96%E9%83%A8%E4%B8%96%E7%95%8C%E7%9A%84%E6%A9%8B%E6%A8%91" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_line" href="https://www.addtoany.com/add_to/line?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fmcp-protocol-introduction%2F&amp;linkname=MCP%20%E5%8D%94%E8%AD%B0%EF%BC%9A%E9%80%A3%E6%8E%A5%20AI%20%E8%88%87%E5%A4%96%E9%83%A8%E4%B8%96%E7%95%8C%E7%9A%84%E6%A9%8B%E6%A8%91" title="Line" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Fblog.che-ya.com%2Fmcp-protocol-introduction%2F&amp;linkname=MCP%20%E5%8D%94%E8%AD%B0%EF%BC%9A%E9%80%A3%E6%8E%A5%20AI%20%E8%88%87%E5%A4%96%E9%83%A8%E4%B8%96%E7%95%8C%E7%9A%84%E6%A9%8B%E6%A8%91" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fblog.che-ya.com%2Fmcp-protocol-introduction%2F&#038;title=MCP%20%E5%8D%94%E8%AD%B0%EF%BC%9A%E9%80%A3%E6%8E%A5%20AI%20%E8%88%87%E5%A4%96%E9%83%A8%E4%B8%96%E7%95%8C%E7%9A%84%E6%A9%8B%E6%A8%91" data-a2a-url="https://blog.che-ya.com/mcp-protocol-introduction/" data-a2a-title="MCP 協議：連接 AI 與外部世界的橋樑"></a></p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
