UNPKG

docxmcp

Version:

A Model Context Protocol (MCP) server for processing .docx files into markdown with image extraction

49 lines (48 loc) 1.07 kB
{ "name": "docxmcp", "version": "1.0.0", "description": "A Model Context Protocol (MCP) server for processing .docx files into markdown with image extraction", "main": "start-server.js", "type": "module", "scripts": { "start": "node start-server.js", "test": "node test/simple-client.js" }, "repository": { "type": "git", "url": "git+https://github.com/alephnull1678/DocxMCP.git" }, "keywords": [ "mcp", "model-context-protocol", "docx", "document", "processing", "markdown", "converter" ], "author": "Alexis Martinez", "license": "ISC", "bugs": { "url": "https://github.com/alephnull1678/DocxMCP/issues" }, "homepage": "https://github.com/alephnull1678/DocxMCP#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.16.0", "mammoth": "^1.9.1", "sharp": "^0.34.3" }, "bin": { "docxmcp": "./start-server.js" }, "files": [ "src/", "start-server.js", "package.json", "README.md", "LICENSE" ], "engines": { "node": ">=16.0.0" } }