UNPKG

mcp-wayback-machine

Version:

MCP server and CLI tool for interacting with the Wayback Machine without API keys

79 lines (78 loc) 1.94 kB
{ "name": "mcp-wayback-machine", "version": "2.0.0", "description": "MCP server and CLI tool for interacting with the Wayback Machine without API keys", "main": "dist/index.js", "type": "module", "bin": { "mcp-wayback-machine": "dist/index.js", "wayback": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsx watch src/index.ts", "test": "vitest run --coverage", "test:watch": "vitest --watch", "test:ci": "vitest run --coverage --reporter=json --reporter=default", "prepare": "npm run build", "prepublishOnly": "npm test && npm run build", "start": "node dist/index.js" }, "keywords": [ "mcp", "wayback", "wayback-machine", "internet-archive", "archival", "web-archive", "mcp-server", "model-context-protocol" ], "author": "Joseph Mearman", "license": "CC-BY-NC-SA-4.0", "repository": { "type": "git", "url": "git+https://github.com/Mearman/mcp-wayback-machine.git" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/", "provenance": true }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.map", "!dist/**/*.test.*", "LICENSE", "README.md", "CHANGELOG.md" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "chalk": "^5.4.1", "commander": "^14.0.0", "ora": "^8.2.0", "zod": "^3.25.51" }, "devDependencies": { "@commitlint/cli": "^19.6.1", "@commitlint/config-conventional": "^19.6.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.3", "@semantic-release/npm": "^12.0.1", "@semantic-release/release-notes-generator": "^14.0.3", "@types/node": "^22.13.2", "@vitest/coverage-v8": "^2.1.8", "semantic-release": "^24.2.5", "tsx": "^4.19.2", "typescript": "^5.7.3", "vitest": "^2.1.8" }, "engines": { "node": ">=18" }, "packageManager": "yarn@4.9.1" }