momento-memori-mcp
v1.0.0
Published
MCP server for MomentoMemori — let AI agents monitor websites, trigger captures and read visual changes.
Maintainers
Readme
MomentoMemori MCP Server
Let AI agents (Claude, etc.) monitor websites through your MomentoMemori workspace — add monitors, trigger captures, and read visual changes.
Setup
- Create a personal API key in MomentoMemori: Settings → API keys & MCP access → Create API key (copy it once).
- Install deps:
cd mcp && npm install. - Add the server to your MCP client.
Claude Code / Claude Desktop
claude mcp add momento-memori \
-e MOMENTO_API_KEY=mm_your_key_here \
-- node /absolute/path/to/mcp/index.mjsOr in an mcp.json / client config:
{
"mcpServers": {
"momento-memori": {
"command": "node",
"args": ["/absolute/path/to/mcp/index.mjs"],
"env": { "MOMENTO_API_KEY": "mm_your_key_here" }
}
}
}MOMENTO_BASE_URL defaults to https://momento-memori.com; override it for a
self-hosted instance.
Tools
| Tool | What it does |
|------|--------------|
| list_monitors | List all monitors with status and latest capture |
| get_monitor | One monitor incl. full capture history + change % |
| add_monitor | Add a monitor (url, interval, viewport, full-page, notify-on-change) |
| capture_now | Trigger an immediate capture, returns the change % |
| list_recent_changes | Captures that visually changed, newest first — the core agent signal |
| set_monitor_status | Pause or resume a monitor |
Auth
The server calls the MomentoMemori REST API with your key as
Authorization: Bearer mm_…. The same key works for the public API directly.
Revoke keys anytime in Settings.
