Skip to content

Commit c52521b

Browse files
committed
chore: update package.json and LICENSE
1 parent 18c12bd commit c52521b

File tree

2 files changed

+38
-14
lines changed

2 files changed

+38
-14
lines changed

LICENSE

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License
22

3+
MCP Wayback Machine Server
34
Copyright (c) 2025 Joseph Mearman
45

5-
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
6-
7-
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
6+
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
87

98
You are free to:
109
- Share — copy and redistribute the material in any medium or format
@@ -15,4 +14,11 @@ Under the following terms:
1514
- NonCommercial — You may not use the material for commercial purposes.
1615
- ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
1716

18-
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
17+
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
18+
19+
Notices:
20+
You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.
21+
22+
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
23+
24+
For commercial use or licensing inquiries, please contact the copyright holder.

package.json

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
2-
"name": "mcp-template",
3-
"version": "1.0.2",
4-
"description": "Template for building MCP (Model Context Protocol) servers with TypeScript",
2+
"name": "mcp-wayback-machine",
3+
"version": "1.0.0",
4+
"description": "MCP server and CLI tool for interacting with the Wayback Machine without API keys",
55
"main": "dist/index.js",
6-
"bin": "dist/index.js",
76
"type": "module",
7+
"bin": {
8+
"mcp-wayback-machine": "dist/index.js",
9+
"wayback": "dist/index.js"
10+
},
811
"scripts": {
912
"build": "tsc",
1013
"dev": "tsx watch src/index.ts",
@@ -15,14 +18,29 @@
1518
"lint:fix": "biome check --write .",
1619
"format": "biome format --write .",
1720
"prepare": "husky",
21+
"prepublishOnly": "npm test && npm run build",
1822
"start": "node dist/index.js"
1923
},
20-
"keywords": ["mcp", "model-context-protocol", "typescript", "template", "mcp-server"],
21-
"author": "",
24+
"keywords": [
25+
"mcp",
26+
"wayback",
27+
"wayback-machine",
28+
"internet-archive",
29+
"archival",
30+
"web-archive",
31+
"mcp-server",
32+
"model-context-protocol"
33+
],
34+
"author": "Joseph Mearman",
2235
"license": "CC-BY-NC-SA-4.0",
2336
"repository": {
2437
"type": "git",
25-
"url": "git+https://github.com/Mearman/mcp-template.git"
38+
"url": "git+https://github.com/Mearman/mcp-wayback-machine.git"
39+
},
40+
"publishConfig": {
41+
"access": "public",
42+
"registry": "https://registry.npmjs.org/",
43+
"provenance": true
2644
},
2745
"files": [
2846
"dist/**/*.js",
@@ -37,19 +55,19 @@
3755
"@modelcontextprotocol/sdk": "^1.12.1",
3856
"chalk": "^5.4.1",
3957
"commander": "^14.0.0",
40-
"node-fetch-cache": "^5.0.2",
4158
"ora": "^8.2.0",
42-
"zod": "^3.25.51",
43-
"zod-to-json-schema": "^3.24.1"
59+
"zod": "^3.25.51"
4460
},
4561
"devDependencies": {
4662
"@biomejs/biome": "^1.9.4",
4763
"@commitlint/cli": "^19.6.1",
4864
"@commitlint/config-conventional": "^19.6.0",
4965
"@semantic-release/changelog": "^6.0.3",
66+
"@semantic-release/commit-analyzer": "^13.0.1",
5067
"@semantic-release/git": "^10.0.1",
5168
"@semantic-release/github": "^11.0.3",
5269
"@semantic-release/npm": "^12.0.1",
70+
"@semantic-release/release-notes-generator": "^14.0.3",
5371
"@types/node": "^22.13.2",
5472
"@vitest/coverage-v8": "^2.1.8",
5573
"husky": "^9.1.7",

0 commit comments

Comments
 (0)