PCC Downloader MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PCC Downloader MCP Serversearch for specification 09910"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PCC Downloader MCP Server
一個基於 Node.js 與 Playwright 的 Model Context Protocol (MCP) 伺服器,專門用於從「公共工程雲端服務網 (tec0304)」自動化搜尋並下載施工綱要規範文件。
核心特色 (Key Features)
目錄瀏覽 (Discovery):
list_chapters直接從網站的下拉選單動態讀取最新章節清單,不硬編碼。精確搜尋 (Smart Search):
search_specifications支援關鍵字與 5 位碼規範編號搜尋,並回傳每筆規範實際可用的格式(DOC/ODT/XLS/ODS/PDF)。批次處理 (Batch Automation):
batch_download_specifications讓 LLM 一次下達多筆下載任務,每筆可指定一個或多個格式。格式選擇: 支援 DOC(含 DOCX)、ODT、XLS、ODS、PDF,每筆規範可用格式不同,搜尋結果會標示。
自動存檔: 檔案自動儲存至使用者的系統下載資料夾(
C:\Users\{你的名字}\Downloads)。
Related MCP server: letgo-mcp
快速上手 (Getting Started)
前置需求
安裝步驟
# 1. 安裝依賴套件
npm install
# 2. 安裝 Playwright 所需的瀏覽器引擎
npx playwright install chromium
# 3. 編譯專案
npm run build整合至 Agent(以 Claude Desktop 為例)
編輯 %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"pcc-downloader": {
"command": "node",
"args": ["C:/你的路徑/PCC_downloader_MCP/dist/index.js"]
}
}
}注意:Playwright 啟動 Chromium 需要約 5~15 秒,請確保 agent 的 tool timeout 設定在 60 秒以上。
建議使用流程
1. list_chapters ← 取得章節清單(可選,用來確認章節代碼)
↓
2. search_specifications ← 搜尋規範,確認 hasDoc/hasOdt 等可用格式
↓
3. batch_download_specifications ← 指定 code 和 formats 批次下載下載的檔案會自動儲存至 系統下載資料夾(C:\Users\{你的名字}\Downloads)。
工具說明 (Available Tools)
1. list_chapters — 取得章節清單
從網站下拉選單動態讀取所有可用章節(動態,不硬編碼)。
回傳範例:
[
{ "name": "00 一般規定", "value": "00" },
{ "name": "03 混凝土", "value": "03" },
{ "name": "09 完成面", "value": "09" }
]2. search_specifications — 搜尋規範
參數 | 類型 | 說明 |
| string(選填) | 關鍵字(如「油漆」)或規範編號(如「09910」)。留空可列出該章節全部規範。 |
| string(選填) | 章節代碼(00-16, L, E)。留空搜尋全部章節。 |
⚠️ 搜尋建議:關鍵字搜尋對應網站的「關鍵字」欄位,僅比對章名。若結果過多或不精確,建議改用 5 位碼規範編號搜尋(如
09910)。
回傳範例:
[
{
"index": 0,
"code": "09910",
"name": "油漆",
"fullVersion": "V8.0",
"detailVersion": "V5.0",
"hasDoc": true,
"hasOdt": true,
"hasXls": true,
"hasOds": true,
"hasPdf": false
}
]3. batch_download_specifications — 批次下載
參數 | 類型 | 說明 |
| array | 下載任務列表 |
| string(選填) | 規範章碼(精確比對,優先使用) |
| string(選填) | 關鍵字(無章碼時使用) |
| string(選填) | 章節代碼 |
| string[](必填) | 要下載的格式: |
呼叫範例:
{
"items": [
{ "code": "09910", "chapter": "09", "formats": ["doc", "odt"] },
{ "code": "09250", "chapter": "09", "formats": ["doc"] }
]
}回傳範例:
[
{ "item": "Code: 09910", "status": "Success", "files": ["09910v80.doc", "09910v80.odt"] },
{ "item": "Code: 09250", "status": "Success", "files": ["09250v70.doc"] }
]4. download_specification — 下載單一規範
參數 | 類型 | 說明 |
| string(必填) | 搜尋用關鍵字 |
| string(必填) | 章節代碼 |
| string(必填) | 規範完整章名(與搜尋結果的 |
| string(必填) | 格式: |
格式說明
格式代碼 | 說明 | 對應按鈕 |
| Word 文件 | DOC版 或 DOCX版 |
| OpenDocument Text | ODT版 |
| Excel 試算表 | XLS版 |
| OpenDocument Spreadsheet | ODS版 |
| PDF 文件 | PDF版 |
每筆規範的可用格式不盡相同,請先用
search_specifications確認hasDoc、hasOdt等欄位。
授權與免責聲明 (License & Disclaimer)
授權協議 (License)
本專案採用 MIT License 授權。
關於作者 (About the Author)
作者: 加號設計數位工程有限公司 HJPLUS.DESIGN
網站: 加號設計數位工程有限公司
粉絲專頁: 加號設計數位工程有限公司
電子郵件: info@hjplusdesign.com
免責聲明 (Disclaimer)
在使用本工具前,請務必詳閱以下聲明:
法律責任:本工具僅供技術研究與個人自動化作業參考,使用者須自行承擔因使用本程式而產生的所有法律責任。
遵循規範:使用者應嚴格遵守「公共工程雲端服務網」之使用條款、隱私權政策及相關規定,嚴禁用於任何可能干擾網站正常運作之行為。
合理使用:建議每次請求之間保留適當間隔,避免對伺服器造成不必要的負擔。
第三方內容:下載之所有施工規範文件,其版權均屬行政院公共工程委員會所有,本工具不保證下載內容的完整性與準確性。
最後更新: 2026-03-06
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/h30190/HJPLUS_PCC_downloader_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server