internet-archive-mcp 3.2.0 → 3.3.1
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/CHANGELOG.md +23 -0
- package/README.md +12 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [3.3.1](https://github.com/Mearman/mcp-wayback-machine/compare/v3.3.0...v3.3.1) (2026-05-09)
|
|
2
|
+
|
|
3
|
+
### Documentation
|
|
4
|
+
|
|
5
|
+
* add related section linking internet-archive-skills ([b480e6f](https://github.com/Mearman/mcp-wayback-machine/commit/b480e6f05b19a2eecf18ec41d444940050bbb3fa))
|
|
6
|
+
|
|
7
|
+
## [3.3.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.2.0...v3.3.0) (2026-05-09)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ci:** run dependabot auto-merge on schedule and manually ([7a1c162](https://github.com/Mearman/mcp-wayback-machine/commit/7a1c162c3e2eece0f9a296e9022751e2343df257))
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ci:** add checkout step to dependabot auto-merge ([1c8494d](https://github.com/Mearman/mcp-wayback-machine/commit/1c8494db6df25c21ee4bf21f4a3f92c02bed916d))
|
|
16
|
+
* **ci:** use single quotes in dependabot auto-merge condition ([f72f3ee](https://github.com/Mearman/mcp-wayback-machine/commit/f72f3ee8eb90ea64cf927f55e0b9a9c397e202ba))
|
|
17
|
+
* **ci:** wait for CI before auto-merging dependabot PRs ([61d2393](https://github.com/Mearman/mcp-wayback-machine/commit/61d2393b20ad42b29e00c84184354e056a218b80))
|
|
18
|
+
|
|
19
|
+
### CI
|
|
20
|
+
|
|
21
|
+
* add pnpm audit step and fix fast-uri vulnerability ([4080d25](https://github.com/Mearman/mcp-wayback-machine/commit/4080d253382c167dea464f38945d6e445a3aecc4))
|
|
22
|
+
* **deps:** bump pnpm/action-setup from 6 to 6.0.5 ([5281e0d](https://github.com/Mearman/mcp-wayback-machine/commit/5281e0da4def6ba7f00ec878a48e96f721317dca))
|
|
23
|
+
|
|
1
24
|
## [3.2.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.1.2...v3.2.0) (2026-05-09)
|
|
2
25
|
|
|
3
26
|
### Features
|
package/README.md
CHANGED
|
@@ -14,12 +14,19 @@ An MCP (Model Context Protocol) server and CLI tool for interacting with the Int
|
|
|
14
14
|
|
|
15
15
|
Some agent harnesses provide a one-command install:
|
|
16
16
|
|
|
17
|
-
**Claude Code:**
|
|
17
|
+
**Claude Code (MCP):**
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
claude mcp add wayback-machine -- npx -y mcp-wayback-machine
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
**Claude Code (plugin marketplace):**
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
/plugin marketplace add https://github.com/Mearman/mcp-wayback-machine.git
|
|
27
|
+
/plugin install mcp-wayback-machine@mcp-wayback-machine
|
|
28
|
+
```
|
|
29
|
+
|
|
23
30
|
**OpenAI Codex:**
|
|
24
31
|
|
|
25
32
|
```bash
|
|
@@ -282,6 +289,10 @@ pnpm validate # typecheck + lint + test + build
|
|
|
282
289
|
- [Save Page Now 2 (SPN2) API](https://docs.google.com/document/d/1Nsv52MvSjbLb2PCpHlat0gkzw0EvtSgpKHu4mk0MnrA/)
|
|
283
290
|
- [Bots, LLMs, and Automated Access](https://archive.org/developers/bots.html)
|
|
284
291
|
|
|
292
|
+
## Related
|
|
293
|
+
|
|
294
|
+
- [internet-archive-skills](https://github.com/internetarchive/internet-archive-skills) — Official Claude Code skill for uploading to, downloading from, and searching the Internet Archive via the `ia` Python CLI. Complements this project (general IA operations) vs. this server (Wayback Machine MCP protocol).
|
|
295
|
+
|
|
285
296
|
## License
|
|
286
297
|
|
|
287
298
|
[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-nc-sa/4.0/).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "internet-archive-mcp",
|
|
3
3
|
"mcpName": "io.github.Mearman/mcp-wayback-machine",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.3.1",
|
|
5
5
|
"description": "MCP server and CLI tool for interacting with the Wayback Machine without API keys",
|
|
6
6
|
"main": "./dist/bin.js",
|
|
7
7
|
"type": "module",
|