export_search_results
Export search results from ArxivSearcher MCP Server to formats like bibtex, csv, json, or markdown. Save results to a specified directory with a custom filename for easy access and organization.
Instructions
Export search results to various formats.
:param results: Results from search_papers or other search functions :param format: Export format ('bibtex', 'csv', 'json', 'markdown') :param filename: Output filename (without extension) :param save_path: Directory to save the file (default: current directory)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | No | ||
format | No | bibtex | |
results | Yes | ||
save_path | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Filename"
},
"format": {
"default": "bibtex",
"title": "Format",
"type": "string"
},
"results": {
"additionalProperties": true,
"title": "Results",
"type": "object"
},
"save_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Save Path"
}
},
"required": [
"results"
],
"type": "object"
}