Twinkle HubTwinkle Hub
登入

📌 2026-08-17 新增:⚖️ 台灣法條時光機 — 歷史法條原文 · 修法沿革 · 全文檢索 · 條文關聯圖(935 個 dataset · 35,454+ 筆 row)

查看完整 Changelog →

教甄試卷檢索 (各縣市 / TJSE)

tw_search_teacher_recruit

台灣​專屬MIT

**關鍵字 / Keywords**: 教甄 教師甄選 縣市聯合甄選 teacher recruitment 教師甄試 國中小

以關鍵字 + 過濾條件,檢索台灣**教師甄選 (教甄)** 試卷.

Corpus: 各縣市政府教育局/處主辦, 民國 ~112-115. Phase 1 已收 5 縣市/
聯盟: taipei / tainan / kaohsiung / hsinchu / midtea (中策聯盟,
~10 縣市共用試題).

**與 tw_search_teacher_exam 區隔**:
  - tw_search_teacher_exam    = 教育部 教師資格考試 (教檢, 取得「教師證」)
  - tw_search_teacher_recruit = 各縣市 教師甄選 (教甄, 取得「正式教職」)
  兩者主管機關不同、法源不同、目的不同, 故拆分 corpus.
  教檢 = 資格證明 (執業執照); 教甄 = 求職甄試 (應徵工作).

參數:
    query: subject_name / county 子字串 (paper 級無 embedding, 走 keyword)
    county: 縣市 slug (taipei / tainan / kaohsiung / hsinchu / midtea)
    stage: 階段別 (es=國小, jh=國中, ki=幼兒園, sh=高中)
    subject_contains: 科目名子字串 (例「國語」「音樂」「特殊教育」).
                      subject_name 含 stage 前綴: es_音樂 / jh_國語.
    year_from / year_to: 西元年範圍
    limit: top-K (1..100, 預設 20)

回傳 schema:
    {n_corpus, n_returned, query,
     hits: [{paper_id, county, exam_year (民國), exam_year_西元,
             exam_name, stage, subject_name, question_type,
             question_count, has_answers,
             question_pdf_url, answer_pdf_url}, ...]}

後續取單一試卷 全部題目 + 答案: tw_get_teacher_recruit_paper(paper_id=...)
題目級語意檢索: tw_search_teacher_recruit_questions("白話 query", ...)

典型用法:
    tw_search_teacher_recruit(county="taipei", year_from=2024)
    tw_search_teacher_recruit(subject_contains="音樂", stage="es")
    tw_search_teacher_recruit(query="特殊教育")

輸入 schema

{
  "properties": {
    "query": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Query"
    },
    "county": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "County"
    },
    "stage": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Stage"
    },
    "subject_contains": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Subject Contains"
    },
    "year_from": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Year From"
    },
    "year_to": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Year To"
    },
    "limit": {
      "default": 20,
      "title": "Limit",
      "type": "integer"
    }
  },
  "title": "tw_search_teacher_recruitArguments",
  "type": "object"
}

呼叫​方式

配置​好 Twinkle Hub 的 MCP client 後,​agent 會​看到 tw_search_teacher_recruit。直接讓它呼叫​即可,​例如:

# Ask Claude / any MCP client:
請用 tw_search_teacher_recruit 處理 "…"。

# It will call:
tw_search_teacher_recruit(input="…")

尚未​設定 Client?

Claude Desktop 約 3 分鐘即可完成​設定 — 下載 .mcpb 檔案並雙擊​即可,或參閱​文件中的各 Client 安裝​步驟。

查看使用者設定​文件