
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
excel-to-pdf-mcp
Advanced tools
An MCP server that can convert Excel (.xls/.xlsx) and Apple Numbers (.numbers) files to PDF
An MCP (Model Context Protocol) server that can convert Excel (.xls/.xlsx) and Apple Numbers (.numbers) files to PDF format. This tool integrates with AI assistants like Claude to enable file conversion directly through the conversation.
LibreOffice is required for the conversion process. Install it according to your operating system:
brew install libreoffice
apt-get install libreoffice
Download and install from LibreOffice official website.
npm install -g excel-to-pdf-mcp
To use this MCP server with Claude desktop:
mcp_settings.json
:{
"mcpServers": {
"excel-to-pdf-mcp": {
"command": "npx",
"args": ["excel-to-pdf-mcp"],
"name": "Excel to PDF Converter"
}
}
}
Make sure your Excel or Numbers files are within your project directory.
Once configured, Claude will be able to convert your spreadsheet files to PDF using this tool.
Here's an example of how a conversation with Claude might look when using this MCP server:
User: "I need to convert my quarterly_report.xlsx to PDF so I can share it with stakeholders."
Claude: "I can help you convert your Excel file to PDF. Let me use the Excel to PDF converter tool."
Claude would then use the tool behind the scenes:
Tool: convert_excel_to_pdf
Arguments: {
"input_path": "quarterly_report.xlsx",
"output_format": "pdf"
}
Claude: "I've converted your Excel file to PDF. You can find it at: quarterly_report-1628347658-a7b2c9.pdf in your project directory."
This MCP server provides the following tools:
Converts Excel files (.xls/.xlsx) to PDF format.
Arguments:
input_path
: Relative path to the Excel file (required)output_format
: Output format, currently only PDF is supported (default: "pdf")Converts Apple Numbers files (.numbers) to PDF format.
Arguments:
input_path
: Relative path to the Numbers file (required)output_format
: Output format, currently only PDF is supported (default: "pdf")If you want to run from source or contribute:
npm install
npm run build
npm start
MIT
FAQs
An MCP server that can convert Excel (.xls/.xlsx) and Apple Numbers (.numbers) files to PDF
The npm package excel-to-pdf-mcp receives a total of 25 weekly downloads. As such, excel-to-pdf-mcp popularity was classified as not popular.
We found that excel-to-pdf-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.