@fre4x/arxiv 1.0.1 → 1.0.7
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 +54 -54
- package/dist/index.js +51900 -203
- package/package.json +4 -5
- package/dist/api.d.ts +0 -14
- package/dist/api.d.ts.map +0 -1
- package/dist/api.js +0 -96
- package/dist/api.js.map +0 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/types.d.ts +0 -52
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -54
- package/dist/types.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
# arxiv — The Research Fang
|
|
2
|
-
|
|
3
|
-
> *Knowledge is the only weapon that sharpens itself. This B1TE cuts through the noise.*
|
|
4
|
-
|
|
5
|
-
Part of **[FRE4X-B1TE](../)** — a monorepo of MCP servers built for autonomous agents.
|
|
6
|
-
|
|
7
|
-
Agents sleep while humans read. This server doesn't sleep. It hunts across the entire arXiv corpus — millions of papers, every category, in real time — so the agent always knows what humans don't yet.
|
|
8
|
-
|
|
9
|
-
## Tools
|
|
10
|
-
|
|
11
|
-
| Tool | What it hunts |
|
|
12
|
-
|------|--------------|
|
|
13
|
-
| `arxiv_search` | Free-text search with field prefixes (`ti:`, `au:`, `abs:`, `cat:`) and boolean operators |
|
|
14
|
-
| `arxiv_get_paper` | Full metadata for one or more papers by arXiv ID |
|
|
15
|
-
| `arxiv_search_by_author` | All papers by a specific author |
|
|
16
|
-
| `arxiv_search_by_category` | Papers in a subject category (e.g. `cs.AI`, `cs.LG`, `q-fin.TR`) |
|
|
17
|
-
| `arxiv_list_categories` | All supported arXiv subject categories |
|
|
18
|
-
|
|
19
|
-
## Query Syntax
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
ti:attention AND cat:cs.LG
|
|
23
|
-
au:Bengio AND abs:generalization
|
|
24
|
-
cat:cs.CV AND ti:object detection
|
|
25
|
-
ti:diffusion AND NOT abs:image
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
All list tools support `limit` (max 100) and `offset` for pagination.
|
|
29
|
-
All tools support `response_format: "markdown"` (default) or `"json"`.
|
|
30
|
-
|
|
31
|
-
## Deploy
|
|
32
|
-
|
|
33
|
-
```json
|
|
34
|
-
{
|
|
35
|
-
"mcpServers": {
|
|
36
|
-
"arxiv": {
|
|
37
|
-
"command": "npx",
|
|
38
|
-
"args": ["-y", "@fre4x/arxiv"]
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## Development
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
bun install
|
|
48
|
-
bun run dev # tsx, no build
|
|
49
|
-
bun run build # compile → dist/
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
## License
|
|
53
|
-
|
|
54
|
-
MIT — **WE ARE THE FRE4X.**
|
|
1
|
+
# arxiv — The Research Fang
|
|
2
|
+
|
|
3
|
+
> *Knowledge is the only weapon that sharpens itself. This B1TE cuts through the noise.*
|
|
4
|
+
|
|
5
|
+
Part of **[FRE4X-B1TE](../)** — a monorepo of MCP servers built for autonomous agents.
|
|
6
|
+
|
|
7
|
+
Agents sleep while humans read. This server doesn't sleep. It hunts across the entire arXiv corpus — millions of papers, every category, in real time — so the agent always knows what humans don't yet.
|
|
8
|
+
|
|
9
|
+
## Tools
|
|
10
|
+
|
|
11
|
+
| Tool | What it hunts |
|
|
12
|
+
|------|--------------|
|
|
13
|
+
| `arxiv_search` | Free-text search with field prefixes (`ti:`, `au:`, `abs:`, `cat:`) and boolean operators |
|
|
14
|
+
| `arxiv_get_paper` | Full metadata for one or more papers by arXiv ID |
|
|
15
|
+
| `arxiv_search_by_author` | All papers by a specific author |
|
|
16
|
+
| `arxiv_search_by_category` | Papers in a subject category (e.g. `cs.AI`, `cs.LG`, `q-fin.TR`) |
|
|
17
|
+
| `arxiv_list_categories` | All supported arXiv subject categories |
|
|
18
|
+
|
|
19
|
+
## Query Syntax
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
ti:attention AND cat:cs.LG
|
|
23
|
+
au:Bengio AND abs:generalization
|
|
24
|
+
cat:cs.CV AND ti:object detection
|
|
25
|
+
ti:diffusion AND NOT abs:image
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
All list tools support `limit` (max 100) and `offset` for pagination.
|
|
29
|
+
All tools support `response_format: "markdown"` (default) or `"json"`.
|
|
30
|
+
|
|
31
|
+
## Deploy
|
|
32
|
+
|
|
33
|
+
```json
|
|
34
|
+
{
|
|
35
|
+
"mcpServers": {
|
|
36
|
+
"arxiv": {
|
|
37
|
+
"command": "npx",
|
|
38
|
+
"args": ["-y", "@fre4x/arxiv"]
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Development
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
bun install
|
|
48
|
+
bun run dev # tsx, no build
|
|
49
|
+
bun run build # compile → dist/
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT — **WE ARE THE FRE4X.**
|