From paper-distill
Local MCP server that distills academic papers from Semantic Scholar (S2) and OpenAlex APIs into Quarto Markdown (QMD) format. Requires S2 API key, OpenAlex email, Vault path, and QMD binary.
npx claudepluginhub hamondyan/paper-distillAdd to your .mcp.json:
{
"mcpServers": {
"paper-distill": {
"command": "/bin/bash",
"args": [
"-lc",
"ROOT=\"${CLAUDE_PLUGIN_ROOT:-${CODEX_PLUGIN_ROOT:-${OPENCLAW_PLUGIN_ROOT:-$PWD}}}\"; exec \"$ROOT/scripts/run-mcp.sh\""
],
"env": {
"S2_API_KEY": "${S2_API_KEY}",
"VAULT_PATH": "${VAULT_PATH}",
"OPENALEX_EMAIL": "${OPENALEX_EMAIL}",
"PAPER_DISTILL_QMD_BINARY": "${PAPER_DISTILL_QMD_BINARY}"
}
}
}
}Replace placeholder values for: S2_API_KEY
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
/bin/bashS2_API_KEY=${S2_API_KEY}VAULT_PATH=${VAULT_PATH}OPENALEX_EMAIL=${OPENALEX_EMAIL}PAPER_DISTILL_QMD_BINARY=${PAPER_DISTILL_QMD_BINARY}