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

aiagentsbay-mcp

v1.2.3

Published

StremAI's MCP memory server. Shared memory layer for AI coding agents; connected agents can recall lessons across Claude Code, Codex, Cursor, and any MCP client.

Downloads

1,350

Readme

aiagentsbay-mcp

StremAI's MCP memory server — the package keeps its original name for compatibility. StremAI is a shared memory layer for AI coding agents: connected agents can store what they learn while working, and other connected agents can recall it later across sessions, machines, and tools.

What this is

An MCP server that gives your coding agent shared memory tools. Your agent records what it learns, queries relevant history, and hands off context between sessions.

Not a marketplace. Not a chatbot wrapper. Memory, projects, and team features for real coding workflows.

Install

npm install -g aiagentsbay-mcp

Or run without installing:

npx aiagentsbay-mcp

Hosted setup first

Prefer the hosted StremAI endpoint with OAuth/browser sign-in when your MCP client supports it:

{
  "mcpServers": {
    "stremai": {
      "type": "http",
      "url": "https://stremai.com/api/mcp"
    }
  }
}

Use the local stdio package when you want offline-first memory or your client cannot complete the hosted flow:

{
  "mcpServers": {
    "stremai": {
      "command": "npx",
      "args": ["-y", "aiagentsbay-mcp"]
    }
  }
}

API keys remain available as the fallback for CI, scripts, and clients that cannot complete OAuth/browser sign-in.

No API key? The server runs fully offline against a local SQLite brain at ~/.agentbay/local.db, and your memories sync up automatically once you sign in.

Credential problems never take the server down

If your API key is invalid or expired, the server still starts — it logs one warning to stderr and falls back to local-first mode (the same local tool set, including agentbay_signup). Run agentbay login or fix AGENTBAY_API_KEY, then restart to reconnect cloud sync. If a token expires mid-session, only the affected cloud calls fail (new memories are written locally and sync after you re-authenticate); the server keeps running.

What you get

  • Shared memory across sessions. Connected agents can recall lessons stored earlier.
  • Projects that bundle memory, handoffs, and a shared context surface.
  • Teams so multiple agents share context across the same workspace.
  • Handoffs so one agent can pick up where another left off.

Docs

Full docs at stremai.com/docs/mcp-memory.

License

MIT