io.github.mdfifty50-boop/docx-forge
NPM · DOCX-FORGE-MCP · SCANNED AUG 3
Professional document generation from structured data
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (129 of 133), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (129 of 133), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 100 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability49
- 0% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Fail
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 833 tokens (~83/item across 10 items; 9 tools + 1 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · docx-forge-mcp
claude mcp add mdfifty50-boop-docx-forge -- npx -y docx-forge-mcp
codex mcp add mdfifty50-boop-docx-forge -- npx -y docx-forge-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mdfifty50-boop-docx-forge": {
"type": "local",
"command": [
"npx",
"-y",
"docx-forge-mcp"
],
"enabled": true
}
}
} openclaw mcp add mdfifty50-boop-docx-forge --command npx --arg -y --arg docx-forge-mcp
mcp_servers:
mdfifty50-boop-docx-forge:
command: "npx"
args: ["-y", "docx-forge-mcp"] {
"mcpServers": {
"mdfifty50-boop-docx-forge": {
"command": "npx",
"args": [
"-y",
"docx-forge-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +55
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Install scripts: unverified → pass ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Maintenance: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- License: unverified → pass ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- Schema quality: unverified → 0 ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −21
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 29 Jul 26 +20
- Tool coverage: unverified → 100 ▲ functional
- Schema quality: unverified → 0 ▲ functional
- 28 Jul 26 −20
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: 0 → unverified ▼ functional
- 27 Jul 26 44
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 129 packages
129 packages in the resolved dependency tree · 128 deprecated · 51 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
add_section ~108
Append a new section (heading + body content) to the end of an existing .docx document. The document is updated in place.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | yes | Section body content (markdown supported) |
| filePath | string | yes | Path to the existing .docx file |
| heading | string | yes | Section heading text |
| headingLevel | integer | — | Heading level: 1 = H1 (largest) through 6 = H6 (smallest). Default: 2 |
No output schema declared.
No examples provided.
add_table ~126
Insert a formatted table into an existing .docx document. The table is appended at the end of the document with bold header row and standard cell borders.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Path to the existing .docx file |
| headers | array | yes | Column header labels (e.g., ["Name", "Role", "Department"]) |
| rows | array | yes | 2D array of table data. Each inner array is one row and must match the number of headers. Example: [["Alice", "Engineer", "Tech"], ["Bob", "Designer", "UX"]] |
No output schema declared.
No examples provided.
create_document ~160
Create a new .docx Word document from markdown or plain text content. Supports headings (#, ##, ###), bold (**text**), italic (*text*), bullet lists (- item), numbered lists (1. item), and blank lines between paragraphs.
| Name | Type | Req | Description |
|---|---|---|---|
| author | string | — | Author name stored in document metadata |
| content | string | yes | Document body content as markdown. Supports headings (#, ##, ###), bold (**text**), italic (*text*), bullet lists (- item), and numbered lists (1. item). |
| outputPath | string | yes | Absolute or relative path where the .docx file will be saved (e.g., /tmp/report.docx) |
| title | string | yes | Document title — appears as the document heading |
No output schema declared.
No examples provided.
export_to_pdf ~86
Convert a .docx file to PDF. Attempts conversion via LibreOffice (best fidelity) then pandoc. Returns success status and the method used. Requires LibreOffice or pandoc to be installed on the system.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Path to the source .docx file |
| outputPath | string | yes | Path where the output .pdf file will be saved |
No output schema declared.
No examples provided.
get_document_stats ~63
Get statistics for a .docx document: word count, character count, estimated page count (at 250 words/page), number of sections (headings), and number of tables.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Path to the .docx file to analyze |
No output schema declared.
No examples provided.
health_check ~20
Returns server health, uptime, version, and call stats
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
merge_documents ~92
Combine multiple .docx files into a single document. Each source document is separated by a horizontal divider. Useful for assembling reports, consolidating contracts, or combining chapter files.
| Name | Type | Req | Description |
|---|---|---|---|
| filePaths | array | yes | Array of paths to .docx files to merge (minimum 2). Files are merged in the order given. |
| outputPath | string | yes | Path where the merged .docx file will be saved |
No output schema declared.
No examples provided.
read_document ~55
Extract all text, paragraph list, headings, and file metadata from an existing .docx file. Returns structured data suitable for further processing or display.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Path to the .docx file to read |
No output schema declared.
No examples provided.
replace_text ~118
Find and replace text in an existing .docx document. Useful for template substitution — e.g., replacing {{CLIENT_NAME}} with an actual name, or updating dates and contract values.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Path to the .docx file to modify |
| find | string | yes | Text string to search for |
| replace | string | yes | Replacement text (can be empty string to delete the found text) |
| replaceAll | boolean | — | If true (default), replace every occurrence. If false, replace only the first occurrence. |
No output schema declared.
No examples provided.