← Back to list

scan
by jacksenechal
MCP server for scanning (image capture/multipage assembly)
⭐ 5🍴 3📅 Dec 27, 2025
SKILL.md
name: scan description: Control scanners via scan-mcp MCP server to capture documents, photos, receipts, and pages. Use when user mentions scanning, scanners, or document types. CRITICAL: call start_scan_job with {} (no params) unless user specifies requirements—server handles intelligent device selection and defaults. Override only for explicit needs like photos (Flatbed+Color+high-res) or duplex stacks (ADF Duplex).
Scanner Control via scan-mcp
THE GOLDEN RULE
Trust the server defaults. When the user requests a scan without specific requirements:
- Call
start_scan_job({})with NO parameters - Do NOT call
list_devicesunless the user explicitly asks for a specific scanner - Do NOT gather device capabilities "just in case"
- Server auto-selects device, resolution (300dpi), color mode (Lineart), source (ADF Duplex → ADF → Flatbed)
Only override parameters when the user's intent clearly requires it.
Decision Tree
User request → Analyze intent:
1. Generic scan ("scan this", "scan document")
→ start_scan_job({}) immediately
2. User asks for specific scanner ("use the Epson")
→ list_devices, then start_scan_job({ device_id })
3. Document type needs special handling ("photo", "duplex")
→ Override only specific params needed
Common Overrides
| User Intent | Parameters |
|---|---|
| Generic scan | {} |
| Photo scan | { source: "Flatbed", color_mode: "Color", resolution_dpi: 600 } |
| Duplex stack | { duplex: true } |
| OCR-optimized | { color_mode: "Gray", resolution_dpi: 300 } |
For more mappings, see EXAMPLES.md.
Standard Workflow
- Call
start_scan_job(params)→ receive{ job_id, run_dir, state } - Poll
get_job_status({ job_id })untilstate: "completed" - Results in
run_dir:page_*.tiff(captured pages)doc_*.tiff(assembled document)manifest.json(metadata)events.jsonl(event log)
Quick Troubleshooting
If scan fails:
get_manifest({ job_id })— check state and parametersget_events({ job_id })— find error details inscanner_failedevents- Common fixes:
- "No devices" → Ask user to check scanner power/connection
- "Feeder jam" → Try
{ source: "Flatbed" }
For detailed troubleshooting, see TROUBLESHOOTING.md.
Reference Materials
- TOOLS.md — Complete tool reference with all parameters
- EXAMPLES.md — User intent → parameter mappings with reasoning
- TROUBLESHOOTING.md — Detailed troubleshooting flows
- CONFIG.md — Environment variables and configuration
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

