@fre4x/arxiv 1.1.0-beta.4 → 1.1.0-beta.6
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.
- package/README.md +10 -10
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,11 +10,11 @@ Agents sleep while humans read. This server doesn't sleep. It hunts across the e
|
|
|
10
10
|
|
|
11
11
|
| Tool | What it hunts |
|
|
12
12
|
|------|--------------|
|
|
13
|
-
| `
|
|
14
|
-
| `
|
|
15
|
-
| `
|
|
16
|
-
| `
|
|
17
|
-
| `
|
|
13
|
+
| `search_papers` | Free-text search with field prefixes (`ti:`, `au:`, `abs:`, `cat:`) and boolean operators |
|
|
14
|
+
| `get_paper` | Full metadata for one or more papers by arXiv ID |
|
|
15
|
+
| `search_by_author` | All papers by a specific author |
|
|
16
|
+
| `search_by_category` | Papers in a subject category (e.g. `cs.AI`, `cs.LG`, `q-fin.TR`) |
|
|
17
|
+
| `list_categories` | All supported arXiv subject categories |
|
|
18
18
|
|
|
19
19
|
## Query Syntax
|
|
20
20
|
|
|
@@ -31,7 +31,7 @@ All tools support `response_format: "markdown"` (default) or `"json"`.
|
|
|
31
31
|
|
|
32
32
|
## Response Examples
|
|
33
33
|
|
|
34
|
-
### `
|
|
34
|
+
### `search_papers`
|
|
35
35
|
|
|
36
36
|
**Input**
|
|
37
37
|
```json
|
|
@@ -59,7 +59,7 @@ Showing 5 of 42 results (offset: 0)
|
|
|
59
59
|
|
|
60
60
|
---
|
|
61
61
|
|
|
62
|
-
### `
|
|
62
|
+
### `get_paper`
|
|
63
63
|
|
|
64
64
|
**Input**
|
|
65
65
|
```json
|
|
@@ -109,7 +109,7 @@ We investigate the limits of neural scaling laws and show that...
|
|
|
109
109
|
|
|
110
110
|
---
|
|
111
111
|
|
|
112
|
-
### `
|
|
112
|
+
### `search_by_author`
|
|
113
113
|
|
|
114
114
|
**Input**
|
|
115
115
|
```json
|
|
@@ -132,7 +132,7 @@ Showing 3 of 128 results (offset: 0)
|
|
|
132
132
|
|
|
133
133
|
---
|
|
134
134
|
|
|
135
|
-
### `
|
|
135
|
+
### `search_by_category`
|
|
136
136
|
|
|
137
137
|
**Input**
|
|
138
138
|
```json
|
|
@@ -153,7 +153,7 @@ Showing 3 of 891 results (offset: 0)
|
|
|
153
153
|
|
|
154
154
|
---
|
|
155
155
|
|
|
156
|
-
### `
|
|
156
|
+
### `list_categories`
|
|
157
157
|
|
|
158
158
|
**Input**
|
|
159
159
|
```json
|
package/dist/index.js
CHANGED
|
@@ -47738,7 +47738,7 @@ async function handleArxivGetPaper(params) {
|
|
|
47738
47738
|
}
|
|
47739
47739
|
}
|
|
47740
47740
|
server.registerTool(
|
|
47741
|
-
"
|
|
47741
|
+
"search_papers",
|
|
47742
47742
|
{
|
|
47743
47743
|
title: "Search arXiv Papers",
|
|
47744
47744
|
description: "Search arXiv for academic papers using a query.",
|
|
@@ -47758,7 +47758,7 @@ server.registerTool(
|
|
|
47758
47758
|
handleArxivSearch
|
|
47759
47759
|
);
|
|
47760
47760
|
server.registerTool(
|
|
47761
|
-
"
|
|
47761
|
+
"get_paper",
|
|
47762
47762
|
{
|
|
47763
47763
|
title: "Get arXiv Paper Details",
|
|
47764
47764
|
description: "Retrieve full details for one or more arXiv papers by ID.",
|
|
@@ -47776,7 +47776,7 @@ server.registerTool(
|
|
|
47776
47776
|
handleArxivGetPaper
|
|
47777
47777
|
);
|
|
47778
47778
|
server.registerTool(
|
|
47779
|
-
"
|
|
47779
|
+
"search_by_author",
|
|
47780
47780
|
{
|
|
47781
47781
|
title: "Search arXiv Papers by Author",
|
|
47782
47782
|
description: "Search arXiv for papers by a specific author name.",
|
|
@@ -47803,7 +47803,7 @@ server.registerTool(
|
|
|
47803
47803
|
}
|
|
47804
47804
|
);
|
|
47805
47805
|
server.registerTool(
|
|
47806
|
-
"
|
|
47806
|
+
"search_by_category",
|
|
47807
47807
|
{
|
|
47808
47808
|
title: "Search arXiv Papers by Category",
|
|
47809
47809
|
description: "Browse or search papers within a specific arXiv subject category.",
|
|
@@ -47836,7 +47836,7 @@ server.registerTool(
|
|
|
47836
47836
|
}
|
|
47837
47837
|
);
|
|
47838
47838
|
server.registerTool(
|
|
47839
|
-
"
|
|
47839
|
+
"list_categories",
|
|
47840
47840
|
{
|
|
47841
47841
|
title: "List arXiv Subject Categories",
|
|
47842
47842
|
description: "List the commonly used arXiv subject categories with their descriptions.",
|