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

addai-chat-mcp

v0.1.0

Published

MCP server for +Ai Chat — lets Claude read and send your chats

Readme

addai-chat-mcp

MCP server for +Ai Chat. Lets Claude (and any other MCP client) read your chat conversations and send messages on your behalf, scoped to an API key you generate from Settings.

Install

The fastest path is the interactive setup:

npx addai-chat-mcp --setup

It asks for your API key, then writes the right config into Claude Desktop (Windows & macOS) and Claude Code's global ~/.claude.json for you. Restart Claude after running it.

Get an API key

  1. Open +Ai Chat → SettingsIntegrations.
  2. Click New Key, name it (e.g. "Claude on my laptop"), and create.
  3. Copy the aic_user_… key shown once. You won't see it again — save it somewhere safe.

Manual install

If you prefer to wire it yourself, add this to your MCP config:

{
  "mcpServers": {
    "addai-chat": {
      "command": "npx",
      "args": ["-y", "addai-chat-mcp"],
      "env": {
        "ADDAI_CHAT_API_KEY": "aic_user_…"
      }
    }
  }
}

Tools

Discovery

  • me — show the current key, its permissions, and accessible workspaces.
  • list_workspaces — list workspaces this key can see.
  • list_workspace_members — list people in a workspace.
  • get_profile — fetch a single profile by id.

Conversations

  • list_conversations — DMs and groups in a workspace.
  • get_conversation — details + participants for one conversation.
  • create_dm — start a 1:1 chat with another user.
  • create_group — create a group chat with named members.
  • update_conversation — rename or update a group's description.
  • add_members / remove_member — manage group membership.
  • leave_conversation — leave a group.
  • mark_read — mark a conversation read up to now.
  • pin_conversation — pin or unpin a conversation.

Messages

  • list_messages — paginate a conversation's history (newest first).
  • send_message — post a message. Supports reply_to_id and attachments.
  • edit_message / delete_message — only on your own messages.
  • toggle_reaction — add or remove an emoji reaction.

Search

  • search_messages — full-text across a workspace, optionally scoped to one conversation.

Attachments

  • upload_attachment — upload a local file and get an attachment object you can pass into send_message.
  • get_attachment — look up an attachment by id.

Permissions

Each key has a chat permission namespace with toggleable resources:

| Resource | Actions | |---|---| | conversations | read, create, update, delete | | messages | read, create, update, delete | | members | read, manage | | attachments | read, upload |

By default every action is on; tighten in the Create-Key modal if you want a read-only or restricted key.

Keys are user-level: they automatically pick up every workspace you're a member of, and lose access when you leave a workspace.

Rate limits

Default 60 requests/minute, 10,000/day. The MCP raises an error if you hit them — wait and retry.

Troubleshooting

| Symptom | Cause | |---|---| | ADDAI_CHAT_API_KEY environment variable is required | Env var not set in your MCP config. | | [UNAUTHORIZED] Invalid or missing API key | Key revoked or typed wrong. Mint a fresh one. | | [FORBIDDEN] Missing chat.<resource>.<action> permission | That action is turned off on the key. Either flip it on (revoke + recreate) or use a different key. | | [WORKSPACE_ACCESS_REVOKED] | You're no longer a member of that workspace. | | [RATE_LIMITED] | Slow down or wait until the limit resets. |

License

MIT.