internet-archive-mcp 3.0.2 → 3.1.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 CHANGED
@@ -1,3 +1,25 @@
1
+ ## [3.1.1](https://github.com/Mearman/mcp-wayback-machine/compare/v3.1.0...v3.1.1) (2026-05-09)
2
+
3
+ ### Documentation
4
+
5
+ * fix license badge URL for shields.io ([2b7f593](https://github.com/Mearman/mcp-wayback-machine/commit/2b7f593a1f46c3a9b1e70e8ea15b72b8d621ce06))
6
+
7
+ ## [3.1.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.0.2...v3.1.0) (2026-05-09)
8
+
9
+ ### Features
10
+
11
+ * add Claude Code plugin marketplace distribution ([7d892c9](https://github.com/Mearman/mcp-wayback-machine/commit/7d892c9742084ea3fd3416c5ee20aabd334b3b67))
12
+ * add Claude Code plugin marketplace distribution ([fc35f78](https://github.com/Mearman/mcp-wayback-machine/commit/fc35f781f0e57df001dd91844c7b62caba2f464e))
13
+
14
+ ### Bug Fixes
15
+
16
+ * remove invalid automerge from dependabot config ([b698469](https://github.com/Mearman/mcp-wayback-machine/commit/b6984692e6aede3323c9036470018a4b2ebb83a4))
17
+
18
+ ### Chores
19
+
20
+ * configure dependabot auto-merge, cooldown, and commit conventions ([ae73e00](https://github.com/Mearman/mcp-wayback-machine/commit/ae73e006f1e5151984ca97815771c7582544399a))
21
+ * **deps:** bump zod, eslint, typescript-eslint, add @semantic-release/exec ([61f7484](https://github.com/Mearman/mcp-wayback-machine/commit/61f7484dd9b24a0b8a13b8e40b5aaf561caef260))
22
+
1
23
  ## [3.0.2](https://github.com/Mearman/mcp-wayback-machine/compare/v3.0.1...v3.0.2) (2026-05-09)
2
24
 
3
25
  ### Bug Fixes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # MCP Wayback Machine Server
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/mcp-wayback-machine.svg)](https://www.npmjs.com/package/mcp-wayback-machine)
4
- [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC-SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
4
+ [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC_BY--NC--SA_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)
5
5
  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Mearman/mcp-wayback-machine/ci.yml?branch=main)](https://github.com/Mearman/mcp-wayback-machine/actions)
6
6
 
7
7
  An MCP (Model Context Protocol) server and CLI tool for interacting with the Internet Archive's Wayback Machine. Supports full CDX search, snapshot content retrieval, screenshot listing, snapshot comparison, and optional authentication for higher rate limits.
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.0.2",
4
+ "version": "3.1.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",
@@ -44,18 +44,19 @@
44
44
  "dependencies": {
45
45
  "@modelcontextprotocol/sdk": "1.29.0",
46
46
  "commander": "14.0.3",
47
- "zod": "4.4.1"
47
+ "zod": "4.4.2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@commitlint/cli": "20.5.3",
51
51
  "@commitlint/config-conventional": "20.5.3",
52
52
  "@eslint/js": "10.0.1",
53
53
  "@semantic-release/changelog": "6.0.3",
54
+ "@semantic-release/exec": "7.1.0",
54
55
  "@semantic-release/git": "10.0.1",
55
56
  "@semantic-release/github": "12.0.6",
56
57
  "@types/node": "25.6.0",
57
58
  "conventional-changelog-conventionalcommits": "9.3.1",
58
- "eslint": "10.2.1",
59
+ "eslint": "10.3.0",
59
60
  "eslint-config-prettier": "10.1.8",
60
61
  "eslint-plugin-prettier": "5.5.5",
61
62
  "eslint-plugin-zod": "3.11.0",
@@ -65,7 +66,7 @@
65
66
  "semantic-release": "25.0.3",
66
67
  "turbo": "2.9.7",
67
68
  "typescript": "6.0.3",
68
- "typescript-eslint": "8.58.2"
69
+ "typescript-eslint": "8.59.1"
69
70
  },
70
71
  "scripts": {
71
72
  "build": "turbo run _build",