academia-mcp 0.0.2__tar.gz → 0.0.3__tar.gz

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.
Files changed (27) hide show
  1. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/PKG-INFO +30 -2
  2. academia_mcp-0.0.3/README.md +31 -0
  3. academia_mcp-0.0.3/academia_mcp/py.typed +0 -0
  4. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/PKG-INFO +30 -2
  5. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/SOURCES.txt +1 -0
  6. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/pyproject.toml +4 -1
  7. academia_mcp-0.0.2/README.md +0 -3
  8. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/LICENSE +0 -0
  9. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/__init__.py +0 -0
  10. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/__main__.py +0 -0
  11. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/server.py +0 -0
  12. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/__init__.py +0 -0
  13. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/anthology_search.py +0 -0
  14. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/arxiv_download.py +0 -0
  15. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/arxiv_search.py +0 -0
  16. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/hf_datasets_search.py +0 -0
  17. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp/tools/s2_citations.py +0 -0
  18. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/dependency_links.txt +0 -0
  19. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/entry_points.txt +0 -0
  20. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/requires.txt +0 -0
  21. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/academia_mcp.egg-info/top_level.txt +0 -0
  22. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/setup.cfg +0 -0
  23. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/tests/test_anthology_search.py +0 -0
  24. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/tests/test_arxiv_download.py +0 -0
  25. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/tests/test_arxiv_search.py +0 -0
  26. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/tests/test_hf_dataset_search.py +0 -0
  27. {academia_mcp-0.0.2 → academia_mcp-0.0.3}/tests/test_s2_citations.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: academia-mcp
3
- Version: 0.0.2
3
+ Version: 0.0.3
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
@@ -30,4 +30,32 @@ Dynamic: license-file
30
30
 
31
31
  # Academia MCP
32
32
 
33
- A collection of MCP tools related to the search of scientific papers.
33
+ A collection of MCP tools related to the search of scientific papers:
34
+ - ArXiv search and download
35
+ - ACL Anthology search
36
+ - HuggingFact datasets search
37
+ - Semantic Scholar citation graphs
38
+
39
+ Install:
40
+ ```
41
+ pip3 install academia-mcp
42
+ ```
43
+
44
+ Comprehensive report screencast: https://www.youtube.com/watch?v=4bweqQcN6w8
45
+
46
+ Single paper screencast: https://www.youtube.com/watch?v=IAAPMptJ5k8
47
+
48
+ Claude Desktop config:
49
+ ```
50
+ {
51
+ "mcpServers": {
52
+ "academia": {
53
+ "command": "python3",
54
+ "args": [
55
+ "-m",
56
+ "academia_mcp"
57
+ ]
58
+ }
59
+ }
60
+ }
61
+ ```
@@ -0,0 +1,31 @@
1
+ # Academia MCP
2
+
3
+ A collection of MCP tools related to the search of scientific papers:
4
+ - ArXiv search and download
5
+ - ACL Anthology search
6
+ - HuggingFact datasets search
7
+ - Semantic Scholar citation graphs
8
+
9
+ Install:
10
+ ```
11
+ pip3 install academia-mcp
12
+ ```
13
+
14
+ Comprehensive report screencast: https://www.youtube.com/watch?v=4bweqQcN6w8
15
+
16
+ Single paper screencast: https://www.youtube.com/watch?v=IAAPMptJ5k8
17
+
18
+ Claude Desktop config:
19
+ ```
20
+ {
21
+ "mcpServers": {
22
+ "academia": {
23
+ "command": "python3",
24
+ "args": [
25
+ "-m",
26
+ "academia_mcp"
27
+ ]
28
+ }
29
+ }
30
+ }
31
+ ```
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: academia-mcp
3
- Version: 0.0.2
3
+ Version: 0.0.3
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
@@ -30,4 +30,32 @@ Dynamic: license-file
30
30
 
31
31
  # Academia MCP
32
32
 
33
- A collection of MCP tools related to the search of scientific papers.
33
+ A collection of MCP tools related to the search of scientific papers:
34
+ - ArXiv search and download
35
+ - ACL Anthology search
36
+ - HuggingFact datasets search
37
+ - Semantic Scholar citation graphs
38
+
39
+ Install:
40
+ ```
41
+ pip3 install academia-mcp
42
+ ```
43
+
44
+ Comprehensive report screencast: https://www.youtube.com/watch?v=4bweqQcN6w8
45
+
46
+ Single paper screencast: https://www.youtube.com/watch?v=IAAPMptJ5k8
47
+
48
+ Claude Desktop config:
49
+ ```
50
+ {
51
+ "mcpServers": {
52
+ "academia": {
53
+ "command": "python3",
54
+ "args": [
55
+ "-m",
56
+ "academia_mcp"
57
+ ]
58
+ }
59
+ }
60
+ }
61
+ ```
@@ -3,6 +3,7 @@ README.md
3
3
  pyproject.toml
4
4
  academia_mcp/__init__.py
5
5
  academia_mcp/__main__.py
6
+ academia_mcp/py.typed
6
7
  academia_mcp/server.py
7
8
  academia_mcp.egg-info/PKG-INFO
8
9
  academia_mcp.egg-info/SOURCES.txt
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "academia-mcp"
7
- version = "0.0.2"
7
+ version = "0.0.3"
8
8
  description = "MCP server that provides different tools to search for scientific publications"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -50,6 +50,9 @@ follow_imports = "skip"
50
50
  where = ["."]
51
51
  include = ["academia_mcp*"]
52
52
 
53
+ [tool.setuptools.package-data]
54
+ "academia_mcp.tools" = ["py.typed"]
55
+
53
56
  [[tool.mypy.overrides]]
54
57
  module = "pydantic.*"
55
58
  follow_imports = "skip"
@@ -1,3 +0,0 @@
1
- # Academia MCP
2
-
3
- A collection of MCP tools related to the search of scientific papers.
File without changes
File without changes