Academic Paper Search MCP Server

by afrise
Verified

search_by_topic

Search for papers by topic with optional date range.

Note: Query length is limited to 300 characters. Longer queries will be automatically truncated. Args: topic (str): Search query (max 300 chars) year_start (int, optional): Start year for date range year_end (int, optional): End year for date range limit (int, optional): Maximum number of results to return (default 10) Returns: str: Formatted search results or error message

Input Schema

NameRequiredDescriptionDefault
limitNo
topicYes
year_endNo
year_startNo

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 10, "title": "Limit", "type": "integer" }, "topic": { "title": "Topic", "type": "string" }, "year_end": { "default": null, "title": "Year End", "type": "integer" }, "year_start": { "default": null, "title": "Year Start", "type": "integer" } }, "required": [ "topic" ], "title": "search_by_topicArguments", "type": "object" }