Help us improve
Share bugs, ideas, or general feedback.
From mcp-wayback-machine
Provides access to the Wayback Machine (Internet Archive) API for retrieving archived web pages and snapshots. Runs locally as a stdio subprocess. Requires WAYBACK_ACCESS_KEY and WAYBACK_SECRET_KEY.
npx claudepluginhub mearman/mcp-wayback-machine --plugin mcp-wayback-machineCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"wayback-machine": {
"command": "npx",
"args": [
"-y",
"mcp-wayback-machine"
],
"env": {
"WAYBACK_ACCESS_KEY": "${WAYBACK_ACCESS_KEY}",
"WAYBACK_SECRET_KEY": "${WAYBACK_SECRET_KEY}"
}
}
}
}Replace placeholder values for: WAYBACK_ACCESS_KEY, WAYBACK_SECRET_KEY
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
WAYBACK_ACCESS_KEY=${WAYBACK_ACCESS_KEY}WAYBACK_SECRET_KEY=${WAYBACK_SECRET_KEY}Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.