@fre4x/arxiv 1.1.2 → 1.1.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 +900 -1663
- package/package.json +7 -7
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
|