Metadata-Version: 2.4
Name: ned-watch-mcp
Version: 1.0.0
Summary: Register a URL, condition, or deadline; Ned wakes you at your callback when it fires. Independent, multi-region, signed.
License-Expression: MIT
Project-URL: Homepage, https://ned.watch
Project-URL: API, https://api.ned.watch/docs
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp>=1.2
Requires-Dist: httpx>=0.27
Dynamic: license-file

# ned-watch-mcp

Register a URL, condition, or deadline; Ned wakes you at your callback when it fires. Independent, multi-region, signed.

Client bits for [Ned Watch](https://ned.watch): the MCP server (`uvx ned-watch-mcp`) and the skill file (`SKILL.md`, installable with `npx skills add ned-mind/ned-watch-skill`). The service itself lives in the private `nedwatch` repo.

## MCP server

`mcp/server.py` is a stdio MCP server over the public API (tools: `watch_register`, `watch_get`, `watch_cancel`,
`deadman_checkin`, `balance`). It installs as the `ned-watch-mcp` command.

Add it to an MCP client. Claude Desktop (`claude_desktop_config.json`), Cursor (`.cursor/mcp.json`) and OpenClaw
(`mcp` block of the agent config) all take the same shape:

```json
{
  "mcpServers": {
    "ned-watch": {
      "command": "uvx",
      "args": ["ned-watch-mcp"],
      "env": { "NED_AGENT_KEY": "nw_..." }
    }
  }
}
```

Leave `NED_AGENT_KEY` out on first use: `watch_register` returns a key (shown once) and tells the agent to store it.

From source: `uvx --from git+https://github.com/ned-mind/ned-watch-skill ned-watch-mcp`, or `pip install .` then `ned-watch-mcp`.

`SKILL.md` (also at `skill/SKILL.md`) is the skill file for skills.sh / OpenClaw; same description, the curl, the callback contract and the verify snippet.
