Get exam paper Q+A
tw_get_exam_paper
TW-specificMIT
**關鍵字 / Keywords**: 國考試卷 完整題目 答案 exam paper answers 試題 高普考 全文
取得單一國考試卷的全部題目 + 標準答案 (測驗題).
參數:
paper_id: 從 tw_search_exam hit 取得 (e.g. "112_112010_301_1")
include_options: 是否回傳測驗題 A/B/C/D 選項 (預設 True)
回傳 schema:
{paper_id, exam_year (民國), exam_year_西元, exam_name,
subject_name, question_type, question_count,
question_pdf_url, answer_pdf_url,
questions: [{no, stem, options: {A,B,C,D}?, answer?}, ...]}
測驗題的 options 從 PDF 結構化抽取,answer 從標準答案 PDF parse.
申論題沒標準答案 (官方不公布), questions 內 answer 欄為 null.Input schema
{
"properties": {
"paper_id": {
"title": "Paper Id",
"type": "string"
},
"include_options": {
"default": true,
"title": "Include Options",
"type": "boolean"
}
},
"required": [
"paper_id"
],
"title": "tw_get_exam_paperArguments",
"type": "object"
}How to call
Once your Twinkle Hub MCP client is configured, your agent will see tw_get_exam_paper. Just ask it to call — example:
# Ask Claude / any MCP client: 請用 tw_get_exam_paper 處理 "…"。 # It will call: tw_get_exam_paper(input="…")
Haven't set up a client yet?
Claude Desktop in 3 minutes — download the .mcpb and double-click, or see docs for other clients.
See user docs