File conversion for AI agents: office docs, PDF to Word, video, and LLM-ready markdown via API.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"com-hushvert-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
File conversion for AI agents: office docs, PDF to Word, video, and LLM-ready markdown via API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / marketing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
An autonomous agent that conducts deep research on any data using any LLM providers
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for com.hushvert/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.

A file-conversion tool for your AI agent.
@hushvert/mcp is a Model Context Protocol
server that gives an AI coding agent (Claude Code, Cursor, Cline, Zed, and any
other MCP host) a convert_file tool over the hushvert hosted API. When a task
needs a conversion a browser cannot do - office documents to PDF, PDF to Word,
large video transcodes - the agent converts the file in one tool call, and the
result is written next to the input. No upload code, no polling, no glue.
It is a thin client over the hushvert hosted API. For the
conversions that DO run in a browser (images, HEIC, archives, audio, small video,
PDF page ops), use the free, open-source @hushvert/engine
package instead - this server will refuse those and point you there.
Get an API key from your hushvert account (developer section - a confirmed email is required), then add the server to your agent's MCP config.
Claude Code (.mcp.json in your project, or the user config):
{
"mcpServers": {
"hushvert": {
"command": "npx",
"args": ["-y", "@hushvert/mcp"],
"env": { "HUSHVERT_API_KEY": "hv_live_your_key_here" }
}
}
}
The same command / args / env block works for Cursor, Cline, Zed, and other
MCP hosts. Then ask your agent: "convert report.docx to PDF."
| Tool | What it does |
|---|---|
convert_file | Convert a local file to another format. Reads the input, runs the conversion, writes the output, returns the path. |
convert_poll | Finish a long conversion (large video) that was still running when convert_file returned. |
list_formats | List the conversions the hosted API supports (the server-only pairs). |
check_usage | Show free conversions remaining, credit balance, and the current billing window. |
convert_fileinput_path (required) path to the source file
to (required) target format, e.g. "pdf", "docx", "mp4"
from (optional) source format; inferred from the extension otherwise
output_path (optional) where to write; defaults beside the input. Required to overwrite.
wait_seconds (optional) max seconds to wait before handing back a jobId to poll. Default 120.
idempotency_key (optional) makes a retried conversion safe (same job, charged once)
Returns { output_path, jobId, pair, bytesIn, bytesOut, status }. If the job is
still running after wait_seconds (typical for large video), it returns
{ jobId, status: "processing", resumeWith: "convert_poll" }; call convert_poll
with the jobId and an output_path to finish.
The server-only formats a browser cannot do:
Call list_formats for the live list. Everything else (images, HEIC, archives,
audio, small video, PDF page ops) runs free, client-side, in
@hushvert/engine.
| Env var | Default | Purpose |
|---|---|---|
HUSHVERT_API_KEY | (required) | Your hv_live_ developer key. |
HUSHVERT_API_BASE | https://hushvert.com | API base URL (for self-host / staging). |
HUSHVERT_DEFAULT_WAIT_SECONDS | 120 | Default poll budget for convert_file. |
HUSHVERT_MAX_JOBS_PER_SESSION | unlimited | Client-side cap on conversions per server run (a guard against runaway loops). |
| `HUSHVERT_ALLOWED_D |