@enconvert/mcp
About
Convert URLs to PDF, screenshot, or markdown — and convert document and image files — directly from Claude Code,Cursor, Windsurf, and Claude Desktop
Details
- Author
- conversionapi
- Downloads
- 290
- Categories
- Developer Tools
Jump to
- Convert any live URL to PDF
- Capture full-page PNG screenshots of URLs
- Extract clean GFM Markdown from articles
- Convert office documents (DOCX, XLSX, PPTX, EPUB, HTML, etc.)
- Convert images between JPEG, PNG, SVG, HEIC, WebP
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
@enconvert/mcpCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install via npx -y @enconvert/mcp@latest and set the ENCONVERT_API_KEY environment variable. For Claude Code, run claude mcp add enconvert with the key; for other clients, add a JSON block to the MCP config file. Once configured, the server exposes five tools: convert_url_to_pdf, convert_url_to_screenshot, convert_url_to_markdown, convert_document, and convert_image.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"@enconvert/mcp": {
"enconvert": {
"command": "npx",
"args": [
"-y",
"@enconvert/mcp@latest"
],
"env": {
"ENCONVERT_API_KEY": "<YOUR_ENCONVERT_API_KEY>"
}
}
}
}
}
McpServers
{
"enconvert": {
"command": "npx",
"args": [
"-y",
"@enconvert/mcp@latest"
],
"env": {
"ENCONVERT_API_KEY": "<YOUR_ENCONVERT_API_KEY>"
}
}
}
@enconvert/mcp
Official Model Context Protocol (MCP) server for Enconvert. Lets any MCP-compatible AI agent — Claude Code, Cursor, Windsurf, Claude Desktop, Continue — convert files and URLs through a single command. ## Tools | Tool | What it does | |------|-------------| |convert_url_to_pdf | Render any live web page as a PDF |
| convert_url_to_screenshot | Capture a full-page PNG screenshot of any URL |
| convert_url_to_markdown | Extract clean GFM Markdown (with YAML frontmatter) from any article — returned inline,
ideal for summarizing or RAG |
| convert_document | Convert DOCX, XLSX, PPTX, ODT, Pages, Numbers, EPUB, HTML, MD, CSV, JSON, XML, YAML, TOML
between formats |
| convert_image | Convert between JPEG, PNG, SVG, HEIC, WebP (e.g. iPhone HEIC → WebP) |
## Requirements
- Node.js 18 or later
- An Enconvert API key — get one at enconvert.com/dashboard/api-keys
## Install
### Claude Code (macOS / Linux)
``bash
claude mcp add enconvert -s user \
-e ENCONVERT_API_KEY=sk_live_your_key \
-- npx -y @enconvert/mcp@latest
`
### Claude Code (native Windows)
`powershell
claude mcp add enconvert -s user
-e ENCONVERT_API_KEY=sk_live_your_key
-- cmd /c npx -y @enconvert/mcp@latest
`
### Cursor / Windsurf / Claude Desktop
Edit the client's MCP config file and add:
`json
{
"mcpServers": {
"enconvert": {
"command": "npx",
"args": ["-y", "@enconvert/mcp@latest"],
"env": {
"ENCONVERT_API_KEY": "sk_live_your_key"
}
}
}
}
`
On native Windows, replace "command": "npx" with "command": "cmd" and prepend "/c", "npx" to args.
## Try it
- "Save https://en.wikipedia.org/wiki/PDF as a PDF."
- "Screenshot https://news.ycombinator.com for me."
- "Give me the article at https://en.wikipedia.org/wiki/Model_Context_Protocol as markdown."
- "Convert /Users/me/Desktop/report.docx to PDF."
- "Convert /Users/me/Desktop/iphone.heic to webp."
## Configuration
| Variable | Required | Default | Purpose |
|----------|----------|---------|---------|
| ENCONVERT_API_KEY | Yes | — | Your Enconvert API key |
| ENCONVERT_BASE_URL | No | https://api.enconvert.com` | Override for staging or self-hosted |
## Links
- Website — https://enconvert.com
- Node SDK — https://www.npmjs.com/package/@enconvert/node-sdk
- Source — https://github.com/conversionapi/mcp
- MCP spec — https://modelcontextprotocol.ioSign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





