Connects to Unpaywall's open-access database to look up scholarly papers without needing an API key. Part of the Pipeworx gateway system, which routes requests across 673+ data sources. You can call tools directly through standard MCP or use the ask_pipeworx wrapper to query in plain English and let the gateway handle tool selection and argument mapping. Runs over streamable HTTP, so no local process needed. Useful when you're researching academic papers and want to find legal free versions instead of hitting paywalls. The source doesn't list specific tools, but Unpaywall typically handles DOI lookups and metadata retrieval for open-access articles.
Unpaywall MCP — open-access lookup for scholarly papers (free, no key)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"unpaywall": {
"url": "https://gateway.pipeworx.io/unpaywall/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Unpaywall data" })
The gateway picks the right tool and fills the arguments automatically.
MIT