shuck-file
shuck-file
Jede Datei rein, Markdown raus — lies nur, was wichtig ist.
shuck-file konvertiert Dokumente in sauberes Markdown für KI-Agenten und LLMs. Kleine Dateien werden direkt ausgegeben; große Dateien liefern eine Dokumentkarte mit Abschnittszusammenfassungen, Token-Anzahlen und umsetzbaren nächsten Schritten — so ziehen Agenten nur, was sie brauchen.
Warum shuck-file?
KI-Agenten brauchen eine Brücke, die kontextbewusst ist:
Kleine Datei →
shuck report.docx→ vollständiges Markdown auf stdoutGroße Datei →
shuck report.docx→ Dokumentkarte mit Abschnitten und ExtraktionsoptionenGezielte Extraktion →
shuck report.docx --sections s1,s3→ nur was du brauchstSuche →
shuck report.docx --grep "revenue"→ finden, ohne alles zu lesen
Related MCP server: mcp-document-converter
Unterstützte Formate
Format | Erweiterung | Bibliothek | Was erhalten bleibt |
Word |
| python-docx | Überschriften, fett/kursiv, Listen, Tabellen |
| pdfplumber | Textinhalt, Seitenumbrüche | |
Excel |
| openpyxl | Alle Blätter als Markdown-Tabellen |
PowerPoint |
| python-pptx | Titel, Text, Tabellen, Sprechernotizen |
CSV |
| stdlib | Alle Zeilen/Spalten als Tabelle |
Installation
Über pip (empfohlen)
pip install shuck-fileDies installiert den shuck-CLI-Befehl und den MCP-Server.
Aus dem Quellcode
git clone https://github.com/Shan-Zhu/shuck-file.git
cd shuck-file
pip install -e .Schnellstart
# Convert a document
shuck report.docx
# Force full output (bypass map mode)
shuck large-report.pdf --all
# Search within a document
shuck report.pdf --grep "revenue"Verwendung
Automatisches Routing (Standard)
Kleine Dateien werden direkt ausgegeben, große Dateien liefern eine Dokumentkarte.
# Small file → direct Markdown output
shuck document.pdf
# Large file → document map with sections table + next steps
shuck large-report.pdfExtraktionsoptionen
# Force full output (bypass map mode)
shuck report.pdf --all
# Extract specific sections
shuck report.pdf --sections s1,s3
# Tables only
shuck report.pdf --tables-only
# Search within document
shuck report.pdf --grep "revenue"
# Token budget (smart compression)
shuck report.pdf --budget 4000
# Combinations work
shuck report.pdf --sections s2,s3 --budget 2000Excel/CSV-spezifisch
# Column headers and types
shuck data.xlsx --schema-only
# Headers + first N rows
shuck data.xlsx --sample 5Subbefehle für Power-User
# Force map mode (even on small files)
shuck probe document.docx
# Force full extraction (alias for --all)
shuck pull document.docxAusgabesteuerung
# Write to file
shuck document.pdf -o output.md
# Write to directory (auto-named)
shuck document.pdf -d ./converted/
# Skip YAML frontmatter
shuck document.pdf --no-frontmatter
# List supported formats
shuck --formatsAusgabe im Kartenmodus
Wenn eine Datei groß ist, liefert shuck eine Dokumentkarte:
# Document Map: quarterly-report.pdf
**6 pages | ~12,400 tokens | 6 sections**
## Sections
| # | Title | Type | Tokens | Density |
|---|-------|------|--------|---------|
| s1 | Executive Summary | narrative | 450 | high |
| s2 | Q3 Financial Results | mixed | 2,800 | high |
| s3 | Revenue Breakdown | tabular | 3,200 | high |
| ...
## Next Steps
- `shuck quarterly-report.pdf --all` -- full document (~12,400 tokens)
- `shuck quarterly-report.pdf --sections s1,s2` -- high-density (~3,250 tokens)
- `shuck quarterly-report.pdf --grep "..."` -- search for keywordsMCP-Server
shuck-file enthält einen MCP-Server (Model Context Protocol), der es jedem MCP-kompatiblen KI-Tool zur Verfügung stellt.
Claude Code
claude mcp add shuck-file -- shuck-fileOder fügen Sie es zur .mcp.json Ihres Projekts hinzu:
{
"mcpServers": {
"shuck-file": {
"command": "shuck-file",
"args": []
}
}
}Cursor
Fügen Sie zu ~/.cursor/mcp.json hinzu:
{
"mcpServers": {
"shuck-file": {
"command": "shuck-file",
"args": []
}
}
}Windsurf
Fügen Sie zu Ihrer MCP-Konfiguration hinzu:
{
"mcpServers": {
"shuck-file": {
"command": "shuck-file",
"args": []
}
}
}Beliebiger MCP-Client
shuck-file registriert sich als MCP-Server über den Einstiegspunkt mcp.servers. Verfügbare Tools:
shuck— Konvertiert ein Dokument in Markdown mit allen Optionen (Modus, Abschnitte, grep, Budget usw.)list_formats— Listet unterstützte Dokumentformate auf
Claude Code Plugin
Installieren Sie als Claude-Code-Plugin für den /shuck-Skill:
claude plugin add /path/to/shuck-fileArchitektur
src/shuck_file/
├── cli.py # CLI entrypoint
├── server.py # MCP Server (FastMCP)
├── core/
│ ├── router.py # Auto-routing logic
│ ├── segmenter.py # Document segmentation
│ ├── mapper.py # Map mode renderer
│ ├── budget.py # Smart compression
│ ├── grep.py # In-document search
│ ├── frontmatter.py # YAML frontmatter
│ └── models.py # Data models
├── extractors/
│ ├── base.py # Base extractor ABC
│ ├── docx_ext.py # Word extractor
│ ├── pdf_ext.py # PDF extractor
│ ├── xlsx_ext.py # Excel extractor
│ ├── pptx_ext.py # PowerPoint extractor
│ └── csv_ext.py # CSV extractor
plugin/ # Claude Code plugin wrapper
tests/
├── test_extractors.py
├── test_router.py
├── test_segmenter.py
├── test_budget.py
└── test_grep.pyLizenz
MIT
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.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, deep-read, and build knowledge bases from Markdown, PDF, DOCX, and PPTX documents via MCP tools for retrieval, document navigation, and ingestion.70616MIT
- AlicenseNot gradedqualityCmaintenanceConverts documents between multiple formats (Markdown, HTML, DOCX, PDF, Text) enabling AI agents to easily transform documents.12MIT
- AlicenseNot gradedqualityCmaintenanceProvides AI agents with comprehensive document parsing capabilities including PDF text extraction, OCR, HTML-to-markdown conversion, table extraction, and summarization, optimized for agent workflows.101MIT
- FlicenseAqualityCmaintenanceConverts files (PDF, DOCX, PPTX, XLSX, images via OCR) and URLs to Markdown, enabling AI clients to read them via a single MCP tool.1
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Shan-Zhu/shuck-file'
If you have feedback or need assistance with the MCP directory API, please join our Discord server