/
by ai.smithery
Search arXiv and ACL Anthology, retrieve citations and references, and browse web sources to accel…
Server configuration and capabilities from the MCP manifest
Size: 6,526 bytes (1,632 tokens)
Tools Found: 25
Analysis ID: nph933ve
This MCP server provides tools for searching scientific publications, downloading papers, processing LaTeX documents, performing web searches, and utilizing language models for various tasks.
Stars
Registry ID: d90a11a0-b7d5-4ce7-a2a0-9ff324c32d15
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
License: Apache License 2.0
Default Branch: main
Last Push: 9/21/2025
Open Issues: 0
Historical performance and growth metrics over time
{
"name": "academia-mcp",
"tags": [],
"tools": [
{
"name": "arxiv_search",
"description": "Search for scientific publications on arXiv.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
},
"max_results": {
"type": "integer"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"authors",
"url"
],
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"summary": {
"type": "string"
}
}
}
}
},
{
"name": "arxiv_download",
"description": "Download a PDF of a publication from arXiv.",
"input_schema": {
"type": "object",
"required": [
"arxiv_id"
],
"properties": {
"arxiv_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "s2_get_citations",
"description": "Get citations for a given publication.",
"input_schema": {
"type": "object",
"required": [
"publication_id"
],
"properties": {
"publication_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "s2_get_references",
"description": "Get references for a given publication.",
"input_schema": {
"type": "object",
"required": [
"publication_id"
],
"properties": {
"publication_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "s2_corpus_id_from_arxiv_id",
"description": "Get the S2 corpus ID from an arXiv ID.",
"input_schema": {
"type": "object",
"required": [
"arxiv_id"
],
"properties": {
"arxiv_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "s2_get_info",
"description": "Get information about a publication from S2.",
"input_schema": {
"type": "object",
"required": [
"publication_id"
],
"properties": {
"publication_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "object",
"required": [
"title",
"abstract",
"authors"
],
"properties": {
"title": {
"type": "string"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"abstract": {
"type": "string"
}
}
}
},
{
"name": "hf_datasets_search",
"description": "Search for datasets on Hugging Face.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
},
"max_results": {
"type": "integer"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"url"
],
"properties": {
"url": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
}
},
{
"name": "anthology_search",
"description": "Search for publications in the ACL Anthology.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
},
"max_results": {
"type": "integer"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"authors",
"url"
],
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
{
"name": "document_qa",
"description": "Perform question answering on a document.",
"input_schema": {
"type": "object",
"required": [
"document",
"question"
],
"properties": {
"document": {
"type": "string"
},
"question": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "compile_latex",
"description": "Compile a LaTeX document.",
"input_schema": {
"type": "object",
"required": [
"latex_content"
],
"properties": {
"latex_content": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "get_latex_template",
"description": "Get a LaTeX template.",
"input_schema": {
"type": "object",
"required": [
"template_name"
],
"properties": {
"template_name": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "get_latex_templates_list",
"description": "Get a list of available LaTeX templates.",
"input_schema": {
"type": "object",
"required": [],
"properties": {}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "visit_webpage",
"description": "Visit a webpage and return its content.",
"input_schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "show_image",
"description": "Show an image.",
"input_schema": {
"type": "object",
"required": [
"image_path"
],
"properties": {
"image_path": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "download_pdf_paper",
"description": "Download a PDF paper.",
"input_schema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "read_pdf",
"description": "Read a PDF file and extract text.",
"input_schema": {
"type": "object",
"required": [
"pdf_path"
],
"properties": {
"pdf_path": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "tavily_web_search",
"description": "Search the web using Tavily.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "exa_web_search",
"description": "Search the web using Exa.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "brave_web_search",
"description": "Search the web using Brave.",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "extract_bitflip_info",
"description": "Extract information for research proposals.",
"input_schema": {
"type": "object",
"required": [
"proposal_id"
],
"properties": {
"proposal_id": {
"type": "string"
}
}
},
"output_schema": {
"type": "object",
"required": [
"info"
],
"properties": {
"info": {
"type": "string"
}
}
}
},
{
"name": "generate_research_proposals",
"description": "Generate research proposals.",
"input_schema": {
"type": "object",
"required": [
"topic"
],
"properties": {
"topic": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "score_research_proposals",
"description": "Score research proposals.",
"input_schema": {
"type": "object",
"required": [
"proposal"
],
"properties": {
"proposal": {
"type": "string"
}
}
},
"output_schema": {
"type": "integer"
}
},
{
"name": "review_pdf_paper",
"description": "Review a PDF paper.",
"input_schema": {
"type": "object",
"required": [
"pdf_path"
],
"properties": {
"pdf_path": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "speech_to_text",
"description": "Convert speech to text.",
"input_schema": {
"type": "object",
"required": [
"audio_file"
],
"properties": {
"audio_file": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "describe_image",
"description": "Describe an image.",
"input_schema": {
"type": "object",
"required": [
"image_path"
],
"properties": {
"image_path": {
"type": "string"
}
}
},
"output_schema": {
"type": "string"
}
}
],
"version": "1.10.3",
"categories": [],
"description": "MCP server that provides different tools to search for scientific publications"
}Forks
Watchers
Contributors
Last Push: 9/21/2025
Open Issues: 0