Paper Search
search_semantic
Search academic papers from Semantic Scholar. Args: query: Search query string (e.g., 'machine learning'). year: Optional year filter (e.g., '2019', '2016-2020', '2010-', '-2015'). max_results: Maximum number of papers to return (default: 10). Returns: List of paper metadata in dictionary format.
Remote adamamer20/paper-search-mcp-openai
Other tools also called search_semantic?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"year": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Year",
"default": null
},
"query": {
"type": "string",
"title": "Query"
},
"max_results": {
"type": "integer",
"title": "Max Results",
"default": 10
}
}
}