npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@barry.wu0329/mcp-office-parser

v1.5.2

Published

MCP server for reading, writing and converting LibreOffice & Office documents — pure JS, no external dependencies required

Downloads

1,099

Readme

mcp-office-parser

⚠️ AI-Generated Project — Use With Caution

This project was generated with the assistance of AI. While efforts have been made to verify correctness, the code may contain errors, security vulnerabilities, or unexpected behavior. It has not been fully audited or tested in production environments. Use at your own risk, and always review the source code before deploying.

An MCP (Model Context Protocol) server for reading, writing, and converting LibreOffice and Microsoft Office documents — implemented in pure JavaScript with no external binary dependencies.

Quick Start

npx @barry.wu0329/mcp-office-parser

What It Does

mcp-office-parser exposes document manipulation capabilities as MCP tools that AI assistants (like Claude) can use to:

  • Read ODT, DOCX, ODP, PPTX, TXT, and more
  • Read spreadsheets from ODS, XLSX, CSV files
  • Create new documents (ODT, ODS, DOCX, XLSX, PDF)
  • Edit existing documents by inserting text
  • Convert between formats (e.g., DOCX → PDF, ODT → TXT)
  • Search through documents for specific content
  • Merge multiple documents into one

Configuration

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-office-parser": {
      "command": "npx",
      "args": ["@barry.wu0329/mcp-office-parser"]
    }
  }
}

VS Code (MCP extension)

Add to .vscode/mcp.json:

{
  "servers": {
    "mcp-office-parser": {
      "command": "npx",
      "args": ["@barry.wu0329/mcp-office-parser"]
    }
  }
}

Supported File Formats

| Format | Read | Write | Notes | |--------|------|-------|-------| | .odt | ✅ | ✅ | LibreOffice Writer | | .ods | ✅ | ✅ | LibreOffice Calc | | .odp | ✅ | ✅ | LibreOffice Impress | | .docx | ✅ | ✅ | Microsoft Word | | .xlsx | ✅ | ✅ | Microsoft Excel | | .pptx | ✅ | — | Microsoft PowerPoint | | .txt | ✅ | ✅ | Plain text | | .csv | ✅ | ✅ | Comma-separated values | | .pdf | ✅ | ✅ | Read via pdf-parse; write via pdf-lib | | .html | — | ✅ | HTML conversion output |

Available MCP Tools

| Tool | Description | |------|-------------| | get_document_info | Get file metadata (size, format, modified time) | | read_document_text | Extract plain text from a document | | read_spreadsheet_data | Read spreadsheet data as a 2D array | | create_document | Create a new document with content | | insert_text_at_position | Insert text at start, end, or replace content | | list_documents | Find all supported documents in a directory | | search_documents | Search document contents for a query string | | get_document_statistics | Word count, character count, sentence count, etc. | | convert_document | Convert between formats | | merge_text_documents | Merge multiple documents into one |

MCP Resources

  • documents:// — Lists all discoverable documents as JSON
  • document://{path} — Reads a document's text content

Requirements

  • Node.js >= 18.17.0
  • No LibreOffice or other external tools needed

License

MIT