Mcp Docx — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Docx (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server pro generování profesionálně formátovaných Word dokumentů (.docx). Podporuje firemní šablony (barvy, fonty, logo), záhlaví/zápatí a převod Markdownu.
cd docx-mcp
npm installSoubor ~/.cursor/mcp.json:
{
"mcpServers": {
"docx": {
"command": "node",
"args": ["/absolutní/cesta/k/docx-mcp/index.js"]
}
}
}Soubor ~/.claude/mcp.json:
{
"mcpServers": {
"docx": {
"command": "node",
"args": ["/absolutní/cesta/k/docx-mcp/index.js"]
}
}
}create_documentVytvoří Word dokument z pole bloků.
{
"title": "Název dokumentu",
"subtitle": "Podnadpis",
"author": "Vaše jméno",
"output_path": "/cesta/soubor.docx",
"theme_path": "~/.docx-mcp/themes/firma.json",
"theme": {
"primaryColor": "CC0000",
"font": "Calibri",
"headerText": "Firma s.r.o.",
"footerText": "Důvěrné",
"logoPath": "/cesta/k/logo.png"
},
"blocks": [
{ "type": "h1", "text": "Nadpis" },
{ "type": "p", "text": "Odstavec textu." },
{ "type": "bullet", "items": ["Bod 1", "Bod 2"] },
{ "type": "table", "headers": ["A", "B"], "rows": [["1", "2"]] },
{ "type": "callout", "title": "Tip", "text": "Text tipu.", "style": "info" }
]
}convert_markdownPřevede Markdown text nebo .md soubor na Word dokument.
{
"markdown": "# Nadpis\n\nText odstavce.\n\n- bod 1\n- bod 2",
"output_path": "/cesta/soubor.docx",
"theme_path": "~/.docx-mcp/themes/firma.json"
}Nebo ze souboru:
{
"markdown_path": "/cesta/k/dokument.md",
"output_path": "/cesta/soubor.docx"
}save_themeUloží šablonu pro opakované použití.
{
"name": "firma",
"theme": {
"primaryColor": "CC0000",
"accentColor": "FF6600",
"font": "Calibri",
"tableHeaderBg": "CC0000",
"headerText": "Firma s.r.o.",
"footerText": "Důvěrné",
"logoPath": "/cesta/k/logo.png"
}
}Uloží se do ~/.docx-mcp/themes/firma.json.
list_themesZobrazí seznam uložených šablon.
| Vlastnost | Výchozí | Popis |
|---|---|---|
primaryColor | 1F3864 | Barva H1 a titulku |
accentColor | 2E75B6 | Barva H2 a akcentů |
h3Color | 404040 | Barva H3 |
textColor | 000000 | Barva textu |
font | Arial | Název fontu |
fontSize | 22 | Velikost písma (half-points, 22=11pt) |
tableHeaderBg | 1F3864 | Pozadí záhlaví tabulek |
tableHeaderText | FFFFFF | Text záhlaví tabulek |
tableStripe | F5F9FF | Barva sudých řádků |
headerText | Text v záhlaví stránky | |
footerText | Text v zápatí stránky | |
logoPath | Cesta k logu (PNG/JPG) |
| Typ | Popis |
|---|---|
h1 / h2 / h3 | Nadpisy 1-3 |
p | Odstavec (bold, italic, color, align) |
bullet | Odrážkový seznam (víceúrovňový) |
numbered | Číslovaný seznam (víceúrovňový) |
table | Tabulka (headers + rows) |
callout | Barevný rámeček (info/warning/success/danger) |
spacer | Prázdný řádek |
pagebreak | Nová stránka |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.