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

loopwithai-mcp

v0.1.0

Published

MCP server for Loop with AI — gives any MCP client (Claude Code/Desktop, Antigravity, Cursor, VS Code) native tools to read a project's rules/context/changes and write issues/tasks/docs/decisions.

Downloads

19

Readme

Loop with AI MCP (loopwithai-mcp) server

Gives any MCP client (Claude Code, Claude Desktop, Antigravity, Cursor, VS Code…) native tools to work with a SyncEfforts project — read its rules/context/changes and write issues/tasks/docs/decisions. Stdio transport; authed by an org-scoped API key. No build step.

Setup

  1. cd mcp && npm install
  2. Generate an API key in the app: Org → API → Generate key. Optionally grab a project id (from list_projects or the project URL) to use as the default.
  3. Add it to your client's MCP config:
{
  "mcpServers": {
    "syncefforts": {
      "command": "node",
      "args": ["/path/to/loopwithai/mcp/server.mjs"],
      "env": {
        "SYNCEFFORTS_API_KEY": "se_live_...",
        "SYNCEFFORTS_PROJECT_ID": "<optional default project id>"
      }
    }
  }
}

The config lives in your client's MCP settings, not in this file — this is just the snippet to paste. The block above (key mcpServers) is what Claude Code / Claude Desktop / Cursor / Antigravity use:

  • Claude Code.mcp.json at your repo root (block above), or: claude mcp add loopwithai --env SYNCEFFORTS_API_KEY=se_live_... --env SYNCEFFORTS_PROJECT_ID=<id> -- node /path/to/loopwithai/mcp/server.mjs

  • Claude Desktopclaude_desktop_config.jsonmcpServers.

  • Cursor.cursor/mcp.jsonmcpServers.

  • Antigravity — its MCP settings → mcpServers.

  • VS Code — uses a different shape: a .vscode/mcp.json in your workspace with the key servers and an explicit "type": "stdio" (not mcpServers):

    {
      "servers": {
        "syncefforts": {
          "type": "stdio",
          "command": "node",
          "args": ["/path/to/loopwithai/mcp/server.mjs"],
          "env": { "SYNCEFFORTS_API_KEY": "se_live_...", "SYNCEFFORTS_PROJECT_ID": "<optional>" }
        }
      }
    }

    (Add via the Command Palette → "MCP: Add Server" → it writes this file.)

SYNCEFFORTS_API_URL overrides the API base (defaults to the deployed se-api).

What the client gets

Tools

  • whoami · list_projects
  • get_context — bootstrap: rules (follow them) + open tasks + recent decisions + docs + change cursor
  • list_changes(since) — sync feed
  • list_issues|tasks|rules|decisions|docs|tags
  • create_issue|create_task|create_doc|create_decision

Resources (when SYNCEFFORTS_PROJECT_ID is set): syncefforts://rules, syncefforts://context — loadable context.

Prompt: adopt_project_rules — loads the project's rules + open tasks and tells the agent to treat the rules as binding.

Governance

By design there is no create_rule/update_rule tool — agents read rules and record work (issues/tasks); humans author rules. An agent should surface rule proposals as an issue. Every write via this server is logged in the app's Activity feed as an AI action, attributed to this key's title.