academia-mcp 1.2.2__py3-none-any.whl → 1.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- academia_mcp/server.py +17 -13
- academia_mcp/tools/anthology_search.py +1 -8
- academia_mcp/tools/arxiv_download.py +2 -0
- academia_mcp/tools/document_qa.py +4 -1
- academia_mcp/tools/md_to_pdf.py +7 -0
- academia_mcp/tools/visit_webpage.py +19 -8
- academia_mcp/tools/web_search.py +9 -6
- academia_mcp/utils.py +22 -2
- {academia_mcp-1.2.2.dist-info → academia_mcp-1.3.0.dist-info}/METADATA +51 -3
- academia_mcp-1.3.0.dist-info/RECORD +25 -0
- academia_mcp-1.2.2.dist-info/RECORD +0 -25
- {academia_mcp-1.2.2.dist-info → academia_mcp-1.3.0.dist-info}/WHEEL +0 -0
- {academia_mcp-1.2.2.dist-info → academia_mcp-1.3.0.dist-info}/entry_points.txt +0 -0
- {academia_mcp-1.2.2.dist-info → academia_mcp-1.3.0.dist-info}/licenses/LICENSE +0 -0
- {academia_mcp-1.2.2.dist-info → academia_mcp-1.3.0.dist-info}/top_level.txt +0 -0
academia_mcp/server.py
CHANGED
@@ -33,7 +33,7 @@ def find_free_port() -> int:
|
|
33
33
|
return port
|
34
34
|
except Exception:
|
35
35
|
continue
|
36
|
-
|
36
|
+
raise RuntimeError("No free port in range 5000-6000 found")
|
37
37
|
|
38
38
|
|
39
39
|
def run(
|
@@ -42,6 +42,8 @@ def run(
|
|
42
42
|
mount_path: str = "/",
|
43
43
|
streamable_http_path: str = "/mcp",
|
44
44
|
transport: Literal["stdio", "sse", "streamable-http"] = "streamable-http",
|
45
|
+
disable_web_search_tools: bool = False,
|
46
|
+
disable_llm_tools: bool = False,
|
45
47
|
) -> None:
|
46
48
|
server = FastMCP(
|
47
49
|
"Academia MCP",
|
@@ -58,19 +60,21 @@ def run(
|
|
58
60
|
server.add_tool(anthology_search)
|
59
61
|
server.add_tool(md_to_pdf)
|
60
62
|
server.add_tool(visit_webpage)
|
61
|
-
server.add_tool(extract_bitflip_info)
|
62
|
-
server.add_tool(generate_research_proposal)
|
63
|
-
server.add_tool(score_research_proposals)
|
64
63
|
|
65
|
-
if
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
64
|
+
if not disable_web_search_tools:
|
65
|
+
if os.getenv("TAVILY_API_KEY"):
|
66
|
+
server.add_tool(tavily_web_search)
|
67
|
+
if os.getenv("EXA_API_KEY"):
|
68
|
+
server.add_tool(exa_web_search)
|
69
|
+
if os.getenv("BRAVE_API_KEY"):
|
70
|
+
server.add_tool(brave_web_search)
|
71
|
+
if os.getenv("EXA_API_KEY") or os.getenv("BRAVE_API_KEY") or os.getenv("TAVILY_API_KEY"):
|
72
|
+
server.add_tool(web_search)
|
73
|
+
|
74
|
+
if not disable_llm_tools and os.getenv("OPENROUTER_API_KEY"):
|
75
|
+
server.add_tool(extract_bitflip_info)
|
76
|
+
server.add_tool(generate_research_proposal)
|
77
|
+
server.add_tool(score_research_proposals)
|
74
78
|
server.add_tool(document_qa)
|
75
79
|
|
76
80
|
if port is None:
|
@@ -34,20 +34,13 @@ def _format_authors(authors: List[Any]) -> str:
|
|
34
34
|
return result
|
35
35
|
|
36
36
|
|
37
|
-
def _format_date(date_str: str) -> str:
|
38
|
-
try:
|
39
|
-
return datetime.strptime(date_str, "%Y").strftime("%B %d, %Y")
|
40
|
-
except ValueError:
|
41
|
-
return date_str
|
42
|
-
|
43
|
-
|
44
37
|
def _clean_entry(entry: Any) -> Dict[str, Any]:
|
45
38
|
return {
|
46
39
|
"id": entry.full_id,
|
47
40
|
"title": _format_text_field(entry.title.as_text()),
|
48
41
|
"authors": _format_authors(entry.authors),
|
49
42
|
"abstract": (_format_text_field(entry.abstract.as_text()) if entry.abstract else ""),
|
50
|
-
"
|
43
|
+
"published_year": entry.year,
|
51
44
|
"categories": ", ".join(entry.venue_ids),
|
52
45
|
"comment": entry.note if entry.note else "",
|
53
46
|
"url": entry.pdf.url if entry.pdf else "",
|
@@ -35,6 +35,8 @@ def parse_pdf_file(pdf_path: Path) -> List[str]:
|
|
35
35
|
for page_number, page in enumerate(reader.pages, start=1):
|
36
36
|
try:
|
37
37
|
text = page.extract_text()
|
38
|
+
if not text:
|
39
|
+
continue
|
38
40
|
prefix = f"## Page {page_number}\n\n"
|
39
41
|
pages.append(prefix + text)
|
40
42
|
except Exception:
|
@@ -6,6 +6,7 @@ from dotenv import load_dotenv
|
|
6
6
|
from pydantic import BaseModel
|
7
7
|
|
8
8
|
from academia_mcp.llm import llm_acall
|
9
|
+
from academia_mcp.utils import truncate_content
|
9
10
|
|
10
11
|
load_dotenv()
|
11
12
|
|
@@ -62,9 +63,11 @@ async def document_qa(
|
|
62
63
|
assert question and question.strip(), "Please provide non-empty 'question'"
|
63
64
|
if isinstance(document, dict):
|
64
65
|
document = json.dumps(document)
|
65
|
-
|
66
66
|
assert document and document.strip(), "Please provide non-empty 'document'"
|
67
67
|
|
68
|
+
question = truncate_content(question, 10000)
|
69
|
+
document = truncate_content(document, 200000)
|
70
|
+
|
68
71
|
model_name = os.getenv("DOCUMENT_QA_MODEL_NAME", "deepseek/deepseek-chat-v3-0324")
|
69
72
|
prompt = PROMPT.format(question=question, document=document)
|
70
73
|
content = await llm_acall(model_name=model_name, prompt=prompt)
|
academia_mcp/tools/md_to_pdf.py
CHANGED
@@ -367,6 +367,10 @@ def md_to_pdf(markdown_text: str, output_filename: str = "output") -> str:
|
|
367
367
|
with open(tex_file_path, "w", encoding="utf-8") as f:
|
368
368
|
f.write(latex_code)
|
369
369
|
|
370
|
+
if shutil.which("pdflatex") is None:
|
371
|
+
shutil.rmtree(temp_dir, ignore_errors=True)
|
372
|
+
return "pdflatex is not installed or not found in PATH."
|
373
|
+
|
370
374
|
try:
|
371
375
|
subprocess.run(
|
372
376
|
[
|
@@ -383,12 +387,14 @@ def md_to_pdf(markdown_text: str, output_filename: str = "output") -> str:
|
|
383
387
|
)
|
384
388
|
|
385
389
|
except subprocess.TimeoutExpired:
|
390
|
+
shutil.rmtree(temp_dir, ignore_errors=True)
|
386
391
|
return "Compilation timed out after 30 seconds"
|
387
392
|
except subprocess.CalledProcessError as e:
|
388
393
|
error_msg = e.stdout.decode("utf-8")
|
389
394
|
error_lines = [
|
390
395
|
line for line in error_msg.split("\n") if "error" in line.lower() or "!" in line
|
391
396
|
]
|
397
|
+
shutil.rmtree(temp_dir, ignore_errors=True)
|
392
398
|
if error_lines:
|
393
399
|
return "Compilation failed. LaTeX errors:\n" + "\n".join(error_lines)
|
394
400
|
return f"Compilation failed. Full LaTeX output:\n{error_msg}"
|
@@ -401,4 +407,5 @@ def md_to_pdf(markdown_text: str, output_filename: str = "output") -> str:
|
|
401
407
|
shutil.rmtree(temp_dir, ignore_errors=True)
|
402
408
|
return f"Compilation successful! PDF file saved as {output_filename}.pdf"
|
403
409
|
|
410
|
+
shutil.rmtree(temp_dir, ignore_errors=True)
|
404
411
|
return "Compilation completed, but PDF file was not created. Check LaTeX code for errors."
|
@@ -11,6 +11,17 @@ EXA_CONTENTS_URL = "https://api.exa.ai/contents"
|
|
11
11
|
AVAILABLE_PROVIDERS = ("basic", "exa")
|
12
12
|
|
13
13
|
|
14
|
+
def _exa_visit_webpage(url: str) -> str:
|
15
|
+
key = os.getenv("EXA_API_KEY", "")
|
16
|
+
assert key, "Error: EXA_API_KEY is not set and no api_key was provided"
|
17
|
+
payload = {
|
18
|
+
"urls": [url],
|
19
|
+
"text": True,
|
20
|
+
}
|
21
|
+
response = post_with_retries(EXA_CONTENTS_URL, payload=payload, api_key=key)
|
22
|
+
return json.dumps(response.json()["results"][0])
|
23
|
+
|
24
|
+
|
14
25
|
def visit_webpage(url: str, provider: Optional[str] = "basic") -> str:
|
15
26
|
"""
|
16
27
|
Visit a webpage and return the content.
|
@@ -28,17 +39,17 @@ def visit_webpage(url: str, provider: Optional[str] = "basic") -> str:
|
|
28
39
|
), f"Invalid provider: {provider}. Available providers: {AVAILABLE_PROVIDERS}"
|
29
40
|
|
30
41
|
if provider == "exa":
|
31
|
-
|
32
|
-
assert key, "Error: EXA_API_KEY is not set and no api_key was provided"
|
33
|
-
payload = {
|
34
|
-
"urls": [url],
|
35
|
-
"text": True,
|
36
|
-
}
|
37
|
-
response = post_with_retries(EXA_CONTENTS_URL, payload=payload, api_key=key)
|
38
|
-
return json.dumps(response.json()["results"][0])
|
42
|
+
return _exa_visit_webpage(url)
|
39
43
|
|
40
44
|
assert provider == "basic"
|
41
45
|
response = get_with_retries(url)
|
46
|
+
content_type = response.headers.get("content-type", "").lower()
|
47
|
+
if not content_type or (not content_type.startswith("text/") and "html" not in content_type):
|
48
|
+
if os.getenv("EXA_API_KEY"):
|
49
|
+
return _exa_visit_webpage(url)
|
50
|
+
return json.dumps(
|
51
|
+
{"id": url, "error": f"Unsupported content-type: {content_type or 'unknown'}"}
|
52
|
+
)
|
42
53
|
markdown_content = markdownify(response.text).strip()
|
43
54
|
markdown_content = re.sub(r"\n{3,}", "\n\n", markdown_content)
|
44
55
|
return json.dumps({"id": url, "text": markdown_content})
|
academia_mcp/tools/web_search.py
CHANGED
@@ -17,7 +17,8 @@ def web_search(
|
|
17
17
|
provider: Optional[str] = "tavily",
|
18
18
|
) -> str:
|
19
19
|
"""
|
20
|
-
Search the web using Exa Search or Tavily and return normalized results.
|
20
|
+
Search the web using Exa Search, Brave Search or Tavily and return normalized results.
|
21
|
+
If the specified provider is not available, the function will try to use the next available provider.
|
21
22
|
|
22
23
|
Returns a JSON object serialized to a string. The structure is: {"results": [...]}
|
23
24
|
Every item in the "results" has at least the following fields: ("title", "url")
|
@@ -47,13 +48,15 @@ def web_search(
|
|
47
48
|
provider = p
|
48
49
|
break
|
49
50
|
|
51
|
+
result = {}
|
50
52
|
if provider == "exa":
|
51
|
-
|
53
|
+
result = json.loads(exa_web_search(query, limit))
|
52
54
|
elif provider == "brave":
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
55
|
+
result = json.loads(brave_web_search(query, limit))
|
56
|
+
elif provider == "tavily":
|
57
|
+
result = json.loads(tavily_web_search(query, limit))
|
58
|
+
result["search_provider"] = provider
|
59
|
+
return json.dumps(result, ensure_ascii=False)
|
57
60
|
|
58
61
|
|
59
62
|
def tavily_web_search(query: str, limit: Optional[int] = 20) -> str:
|
academia_mcp/utils.py
CHANGED
@@ -13,10 +13,11 @@ def post_with_retries(
|
|
13
13
|
api_key: Optional[str] = None,
|
14
14
|
timeout: int = 30,
|
15
15
|
num_retries: int = 3,
|
16
|
+
backoff_factor: float = 3.0,
|
16
17
|
) -> requests.Response:
|
17
18
|
retry_strategy = Retry(
|
18
19
|
total=num_retries,
|
19
|
-
backoff_factor=
|
20
|
+
backoff_factor=backoff_factor,
|
20
21
|
status_forcelist=[429, 500, 502, 503, 504],
|
21
22
|
allowed_methods=["POST"],
|
22
23
|
)
|
@@ -24,6 +25,7 @@ def post_with_retries(
|
|
24
25
|
session = requests.Session()
|
25
26
|
adapter = requests.adapters.HTTPAdapter(max_retries=retry_strategy)
|
26
27
|
session.mount("https://", adapter)
|
28
|
+
session.mount("http://", adapter)
|
27
29
|
|
28
30
|
headers = {
|
29
31
|
"x-api-key": api_key,
|
@@ -42,11 +44,12 @@ def get_with_retries(
|
|
42
44
|
api_key: Optional[str] = None,
|
43
45
|
timeout: int = 30,
|
44
46
|
num_retries: int = 3,
|
47
|
+
backoff_factor: float = 3.0,
|
45
48
|
params: Optional[Dict[str, Any]] = None,
|
46
49
|
) -> requests.Response:
|
47
50
|
retry_strategy = Retry(
|
48
51
|
total=num_retries,
|
49
|
-
backoff_factor=
|
52
|
+
backoff_factor=backoff_factor,
|
50
53
|
status_forcelist=[429, 500, 502, 503, 504],
|
51
54
|
allowed_methods=["GET"],
|
52
55
|
)
|
@@ -54,6 +57,7 @@ def get_with_retries(
|
|
54
57
|
session = requests.Session()
|
55
58
|
adapter = requests.adapters.HTTPAdapter(max_retries=retry_strategy)
|
56
59
|
session.mount("https://", adapter)
|
60
|
+
session.mount("http://", adapter)
|
57
61
|
|
58
62
|
headers = {}
|
59
63
|
if api_key:
|
@@ -145,3 +149,19 @@ def extract_json(text: str) -> Any:
|
|
145
149
|
def encode_prompt(template: str, **kwargs: Any) -> str:
|
146
150
|
template_obj = Template(template)
|
147
151
|
return template_obj.render(**kwargs).strip()
|
152
|
+
|
153
|
+
|
154
|
+
def truncate_content(
|
155
|
+
content: str,
|
156
|
+
max_length: int,
|
157
|
+
) -> str:
|
158
|
+
disclaimer = (
|
159
|
+
f"\n\n..._This content has been truncated to stay below {max_length} characters_...\n\n"
|
160
|
+
)
|
161
|
+
half_length = max_length // 2
|
162
|
+
if len(content) <= max_length:
|
163
|
+
return content
|
164
|
+
|
165
|
+
prefix = content[:half_length]
|
166
|
+
suffix = content[-half_length:]
|
167
|
+
return prefix + disclaimer + suffix
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: academia-mcp
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0
|
4
4
|
Summary: MCP server that provides different tools to search for scientific publications
|
5
5
|
Author-email: Ilya Gusev <phoenixilya@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/IlyaGusev/academia_mcp
|
@@ -44,16 +44,26 @@ A collection of MCP tools related to the search of scientific papers:
|
|
44
44
|
- Web search: Exa/Brave/Tavily
|
45
45
|
- Page crawler
|
46
46
|
|
47
|
-
Install
|
47
|
+
## Install
|
48
|
+
|
49
|
+
- Using pip (end users):
|
48
50
|
```
|
49
51
|
pip3 install academia-mcp
|
50
52
|
```
|
51
53
|
|
54
|
+
- For development (uv + Makefile):
|
55
|
+
```
|
56
|
+
uv venv .venv
|
57
|
+
make install
|
58
|
+
```
|
59
|
+
|
60
|
+
## Examples
|
52
61
|
Comprehensive report screencast: https://www.youtube.com/watch?v=4bweqQcN6w8
|
53
62
|
|
54
63
|
Single paper screencast: https://www.youtube.com/watch?v=IAAPMptJ5k8
|
55
64
|
|
56
|
-
|
65
|
+
|
66
|
+
## Claude Desktop config
|
57
67
|
```
|
58
68
|
{
|
59
69
|
"mcpServers": {
|
@@ -69,3 +79,41 @@ Claude Desktop config:
|
|
69
79
|
}
|
70
80
|
}
|
71
81
|
```
|
82
|
+
|
83
|
+
## Running the server (CLI)
|
84
|
+
|
85
|
+
```
|
86
|
+
uv run -m academia_mcp --transport streamable-http
|
87
|
+
```
|
88
|
+
|
89
|
+
Notes:
|
90
|
+
- Transports supported: `stdio`, `sse`, `streamable-http`.
|
91
|
+
- Host/port are used for HTTP transports; for `stdio` they are ignored.
|
92
|
+
|
93
|
+
## Makefile targets
|
94
|
+
|
95
|
+
- `make install`: install the package in editable mode with uv.
|
96
|
+
- `make validate`: run black, flake8, and mypy (strict).
|
97
|
+
- `make test`: run the test suite with pytest.
|
98
|
+
- `make publish`: build and publish using uv.
|
99
|
+
|
100
|
+
## Environment variables
|
101
|
+
|
102
|
+
Set as needed depending on which tools you use:
|
103
|
+
|
104
|
+
- `TAVILY_API_KEY`: enables Tavily in `web_search`.
|
105
|
+
- `EXA_API_KEY`: enables Exa in `web_search` and `visit_webpage`.
|
106
|
+
- `BRAVE_API_KEY`: enables Brave in `web_search`.
|
107
|
+
- `OPENROUTER_API_KEY`: required for `document_qa`.
|
108
|
+
- `BASE_URL`: override OpenRouter base URL for `document_qa` and bitflip tools.
|
109
|
+
- `DOCUMENT_QA_MODEL_NAME`: override default model for `document_qa`.
|
110
|
+
- `BITFLIP_MODEL_NAME`: override default model for bitflip tools.
|
111
|
+
- `WORKSPACE_DIR`: directory for generated files (PDFs, temp artifacts).
|
112
|
+
|
113
|
+
## md_to_pdf requirements
|
114
|
+
|
115
|
+
The `md_to_pdf` tool invokes `pdflatex`. Ensure a LaTeX distribution is installed and `pdflatex` is on PATH. On Debian/Ubuntu:
|
116
|
+
|
117
|
+
```
|
118
|
+
sudo apt install texlive-latex-base texlive-fonts-recommended texlive-latex-extra texlive-science
|
119
|
+
```
|
@@ -0,0 +1,25 @@
|
|
1
|
+
academia_mcp/__init__.py,sha256=2Ru2I5u4cE7DrkkAsibDUEF1K6sYtqppb9VyFrRoQKI,94
|
2
|
+
academia_mcp/__main__.py,sha256=rcmsOtJd3SA82exjrcGBuxuptcoxF8AXI7jNjiVq2BY,59
|
3
|
+
academia_mcp/files.py,sha256=hI5dj4h0fX8V3DXKI_C8vs1fte2uc9gsBXC6prLV4o4,745
|
4
|
+
academia_mcp/llm.py,sha256=o84FQNSbjjVSk9DlvFXWsUDiz5IOaavYU6kOqnPEG7E,1071
|
5
|
+
academia_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
academia_mcp/server.py,sha256=mMGKxL9u_EFEq4eTO0Xj6uknXUSW7X5dspxeexR1O8s,2729
|
7
|
+
academia_mcp/utils.py,sha256=P9U3RjYzcztE0KxXvJSy5wSBaUg2CM9tpByljYrsrl4,4607
|
8
|
+
academia_mcp/tools/__init__.py,sha256=8_8QWPRYmPiUjdiNrQilEEnCRR-UBU7g-56jT52V3VQ,934
|
9
|
+
academia_mcp/tools/anthology_search.py,sha256=rhFpJZqGLABgr0raDuH0CARBiAJNJtEI4dlMrKNHfDQ,7669
|
10
|
+
academia_mcp/tools/arxiv_download.py,sha256=soa9nPDHV1-ZgTLtqh-Fj69WkRsrb1hRKouWDa2ePng,11269
|
11
|
+
academia_mcp/tools/arxiv_search.py,sha256=pzM18qrF3QL03A53w003kE7hQi3s3QKtjgw0m7K88UY,8355
|
12
|
+
academia_mcp/tools/bitflip.py,sha256=u0hSOPWbnCDu2EbA_RkueX496SvTKz9QhZcXugshSfI,10949
|
13
|
+
academia_mcp/tools/document_qa.py,sha256=04pJpiYCg27EFiZhfmTaMjeobu8SMT0Dls7OAFDoH00,2392
|
14
|
+
academia_mcp/tools/hf_datasets_search.py,sha256=KiBkqT4rXjEN4oc1AWZOPnqN_Go90TQogY5-DUm3LQo,2854
|
15
|
+
academia_mcp/tools/md_to_pdf.py,sha256=2fMZvUrffhPUa8CIk7q43ExfH-W-p9rvO2HpW3DIT54,13121
|
16
|
+
academia_mcp/tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
academia_mcp/tools/s2_citations.py,sha256=dqrBp76RrX1zH2XzcMAoWBbvbtyhxLeF-xnqOKD_JiM,4852
|
18
|
+
academia_mcp/tools/visit_webpage.py,sha256=OZdqDkVPIbANyFw5o5jIjU5Rr_dolxrGDs63Ud-GmRM,1966
|
19
|
+
academia_mcp/tools/web_search.py,sha256=mobKm4iqKppn8pduZYMzWRo1MQBjkAqmMtrFLI5XY2Y,6296
|
20
|
+
academia_mcp-1.3.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
21
|
+
academia_mcp-1.3.0.dist-info/METADATA,sha256=Lx7zXo9Zx6Pi0bxLkaYciF3YU5DP6cB7LbYB_ko8kmk,3324
|
22
|
+
academia_mcp-1.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
23
|
+
academia_mcp-1.3.0.dist-info/entry_points.txt,sha256=gxkiKJ74w2FwJpSECpjA3XtCfI5ZfrM6N8cqnwsq4yY,51
|
24
|
+
academia_mcp-1.3.0.dist-info/top_level.txt,sha256=CzGpRFsRRJRqWEb1e3SUlcfGqRzOxevZGaJWrtGF8W0,13
|
25
|
+
academia_mcp-1.3.0.dist-info/RECORD,,
|
@@ -1,25 +0,0 @@
|
|
1
|
-
academia_mcp/__init__.py,sha256=2Ru2I5u4cE7DrkkAsibDUEF1K6sYtqppb9VyFrRoQKI,94
|
2
|
-
academia_mcp/__main__.py,sha256=rcmsOtJd3SA82exjrcGBuxuptcoxF8AXI7jNjiVq2BY,59
|
3
|
-
academia_mcp/files.py,sha256=hI5dj4h0fX8V3DXKI_C8vs1fte2uc9gsBXC6prLV4o4,745
|
4
|
-
academia_mcp/llm.py,sha256=o84FQNSbjjVSk9DlvFXWsUDiz5IOaavYU6kOqnPEG7E,1071
|
5
|
-
academia_mcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
academia_mcp/server.py,sha256=q9bhacVm-8uuIMc_xSeymmVaIB8pQCqfTQx5GU8hhpM,2492
|
7
|
-
academia_mcp/utils.py,sha256=tkHBho-NfzAR8rplFaiRYq4sBmQ9V3JPjDJTDrz58Xs,4041
|
8
|
-
academia_mcp/tools/__init__.py,sha256=8_8QWPRYmPiUjdiNrQilEEnCRR-UBU7g-56jT52V3VQ,934
|
9
|
-
academia_mcp/tools/anthology_search.py,sha256=_5s8EzdV7NQD_F3bjVH4XlKKHOJlFtWlQVrPbODuc3I,7847
|
10
|
-
academia_mcp/tools/arxiv_download.py,sha256=xanzt77TZBQRngzGbKCRz4Hp-Mwfe_q-46eRW23TpVs,11219
|
11
|
-
academia_mcp/tools/arxiv_search.py,sha256=pzM18qrF3QL03A53w003kE7hQi3s3QKtjgw0m7K88UY,8355
|
12
|
-
academia_mcp/tools/bitflip.py,sha256=u0hSOPWbnCDu2EbA_RkueX496SvTKz9QhZcXugshSfI,10949
|
13
|
-
academia_mcp/tools/document_qa.py,sha256=lWtzRNFKwQpQO8vPNvYYbNnGh3LsBmGl6f9vSRIuqaw,2245
|
14
|
-
academia_mcp/tools/hf_datasets_search.py,sha256=KiBkqT4rXjEN4oc1AWZOPnqN_Go90TQogY5-DUm3LQo,2854
|
15
|
-
academia_mcp/tools/md_to_pdf.py,sha256=Ovc_-8j7gIZNEM1d0ZDH-8qbtfZLSaNmCm5DQjrtM0k,12810
|
16
|
-
academia_mcp/tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
academia_mcp/tools/s2_citations.py,sha256=dqrBp76RrX1zH2XzcMAoWBbvbtyhxLeF-xnqOKD_JiM,4852
|
18
|
-
academia_mcp/tools/visit_webpage.py,sha256=0zAZYeQxPDu0OjgAAvbMLZh0ttaS5q-_4WhgsEPrbsI,1542
|
19
|
-
academia_mcp/tools/web_search.py,sha256=P74HF5agF-cWOGUYmrDcr_R-Ay3xz9fNdhFov8vtt9o,6025
|
20
|
-
academia_mcp-1.2.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
21
|
-
academia_mcp-1.2.2.dist-info/METADATA,sha256=SC1JQUbH4sbFFZFcuTeC-iwEVIhMbQqXlSL2sB6riqM,1899
|
22
|
-
academia_mcp-1.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
23
|
-
academia_mcp-1.2.2.dist-info/entry_points.txt,sha256=gxkiKJ74w2FwJpSECpjA3XtCfI5ZfrM6N8cqnwsq4yY,51
|
24
|
-
academia_mcp-1.2.2.dist-info/top_level.txt,sha256=CzGpRFsRRJRqWEb1e3SUlcfGqRzOxevZGaJWrtGF8W0,13
|
25
|
-
academia_mcp-1.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|