scholarly_search
Pack: lens-org · Endpoint: https://gateway.pipeworx.io/lens-org/mcp
Search Lens.org scholarly works (academic papers, preprints) by free-text or Lucene query (requires Bearer token); returns title, authors, journal, year, and DOI.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
size | number | no | |
from | number | no |
Example call
Arguments
{
"query": "quantum computing"
}
curl
curl -X POST https://gateway.pipeworx.io/lens-org/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scholarly_search","arguments":{"query":"quantum computing"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scholarly_search', {
"query": "quantum computing"
});
More examples
{
"query": "author:\"Einstein\" title:relativity",
"size": 100
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Scholarly works search results from Lens.org API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"lens-org": {
"url": "https://gateway.pipeworx.io/lens-org/mcp"
}
}
}
See Getting Started for client-specific install steps.