npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@atawai/mcp

v0.2.7

Published

ATAWAI MCP server — captures the reasoning behind AI-assisted code changes and exposes it to any MCP-compatible client (Cursor, VS Code, Claude Desktop, Claude Code, Codex, Continue).

Readme

@atawai/mcp

ATAWAI MCP server — captures the reasoning behind every AI-assisted code change and exposes it to any MCP-compatible client.

Anytime. Anywhere. Any AI.

This package is the cross-IDE engine of ATAWAI. It runs locally as a stdio MCP server, captures every prompt and file change, and exposes 24 tools in the Version Graph v1 taxonomy (timeline, file history, replay, restore, lineage, reversals, team sharing, etc.) that your AI can call to remember why things were done.

No bundled UI — just the data plane and the tools. Pair with the atawai VS Code / Cursor extension if you want a sidebar.


Install

Option 1 — Zero install via npx (recommended)

Add ATAWAI to your client's MCP config. The Node bundle (~465 KB) is downloaded on first use and cached by npx.

Cursor — .cursor/mcp.json

{
  "mcpServers": {
    "atawai": {
      "command": "npx",
      "args": ["-y", "@atawai/mcp", "${workspaceFolder}"]
    }
  }
}

VS Code (≥ 1.99 with Copilot Chat) — .vscode/mcp.json

{
  "servers": {
    "atawai": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@atawai/mcp", "${workspaceFolder}"]
    }
  }
}

Claude Desktop — ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)

{
  "mcpServers": {
    "atawai": {
      "command": "npx",
      "args": ["-y", "@atawai/mcp", "/absolute/path/to/your/workspace"]
    }
  }
}

Claude Code CLI — ~/.claude.json

{
  "mcpServers": {
    "atawai": {
      "command": "npx",
      "args": ["-y", "@atawai/mcp", "."]
    }
  }
}

Codex CLI — ~/.codex/config.toml

[mcp_servers.atawai]
command = "npx"
args = ["-y", "@atawai/mcp", "."]

Option 2 — Global install

npm install -g @atawai/mcp
# then use `atawai-mcp` instead of `npx -y @atawai/mcp` in the configs above

Option 3 — Full IDE bootstrap (one command)

npx -y @atawai/install <device-code-from-rl4.ai>

Installs the atawai VSIX (bundled inside the npm package — no network fetch), sideloads it into your IDE, and links your account.


What the tools do

Once connected, your AI gets 24 MCP tools in the Version Graph v1 taxonomy:

  • atawai_graph_* (11) — read the Version Graph (the product): graph_summary, graph_timeline, graph_reversals, graph_chat_search, graph_edit_context, graph_file_history, graph_replay, graph_blob, graph_file_read, graph_restore, graph_lineage
  • atawai_capture_* (4) — ingestion / sync: capture_flush, capture_git, capture_recover_chats, capture_sync_health
  • atawai_admin_* (6) — workspace / auth / diagnostics: admin_workspaces, admin_workspace_probe, admin_debug, admin_verify, admin_live_activity, admin_login
  • atawai_team_* (3) — share the Version Graph with collaborators: team_share, team_revoke, team_list. access="chain_only" shares the reconstruction (prompts, chains, timeline, lineage) while the content store stays refused at the database level — never the source bytes.

All tools operate on the workspace's .rl4/ directory. No data leaves your machine unless you opt into cloud sync.


Requirements

  • Node.js ≥ 20
  • An MCP-compatible client (Cursor, VS Code with Copilot Chat ≥ 1.99, Claude Desktop, Claude Code, Codex, Continue.dev)

License

MIT — see LICENSE.