internet-archive-mcp 3.3.0 → 3.3.2

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +12 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [3.3.2](https://github.com/Mearman/mcp-wayback-machine/compare/v3.3.1...v3.3.2) (2026-05-09)
2
+
3
+ ### Documentation
4
+
5
+ * add Claude Code plugin marketplace install commands ([0b83b3a](https://github.com/Mearman/mcp-wayback-machine/commit/0b83b3a06b5ae2a7fda3b19ec77369f495d9f997))
6
+
7
+ ## [3.3.1](https://github.com/Mearman/mcp-wayback-machine/compare/v3.3.0...v3.3.1) (2026-05-09)
8
+
9
+ ### Documentation
10
+
11
+ * add related section linking internet-archive-skills ([b480e6f](https://github.com/Mearman/mcp-wayback-machine/commit/b480e6f05b19a2eecf18ec41d444940050bbb3fa))
12
+
1
13
  ## [3.3.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.2.0...v3.3.0) (2026-05-09)
2
14
 
3
15
  ### 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.3.0",
4
+ "version": "3.3.2",
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",