What is the shuck-convert MCP server?
Convert between document formats — DOCX/PDF to Markdown, Markdown to DOCX.
How to install shuck-convert
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"shuck-convert": {
"command": "uvx",
"args": [
"shuck-convert"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"shuck-convert": {
"command": "uvx",
"args": [
"shuck-convert"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"shuck-convert": {
"command": "uvx",
"args": [
"shuck-convert"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"shuck-convert": {
"type": "stdio",
"command": "uvx",
"args": [
"shuck-convert"
]
}
}
}Claude Code
claude mcp add shuck-convert -- uvx shuck-convert