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

@alie.me/mcp

v0.4.0

Published

ALIE MCP server — read + write your second brain from any AI tool. v0.4 adds folders: alie_list_boards + alie_assign_to_board.

Downloads

58

Readme

@alie.me/mcp — ALIE memory layer for any AI tool

The official MCP server for ALIE. Plug your second brain into Claude Desktop, Cursor, Raycast, Codex CLI, or any other MCP-supporting host. From then on, the AI you're talking to can read your memories AND save important moments back to your brain — without you ever leaving the conversation.

What it does

Once installed, your host AI gets three tools:

  • alie_recall — fetches relevant memories at the start of every substantive conversation. The host AI is instructed to call this proactively so you never have to re-explain yourself.
  • alie_capture — saves a URL, a snippet, or a chunk of text to your brain. Use the natural phrase "save this to ALIE" in any conversation.
  • alie_capture_decision — saves a decision-with-reasoning snapshot. The host AI calls this whenever you commit to a direction; future conversations on the topic surface the snapshot automatically.

Installation

1. Get an API token

Visit alie.me/settings/tokens (sign in first), create a token labelled e.g. "Claude Desktop — MacBook", and copy the value. You'll only see the plaintext once.

2. Add to your host's config

Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "alie": {
      "command": "npx",
      "args": ["-y", "@alie.me/mcp"],
      "env": {
        "ALIE_TOKEN": "alie_xxx_paste_yours_here"
      }
    }
  }
}

Cursor — Settings → MCP Servers → add the same JSON block.

Codex CLI / Cline / Continue — same shape, follow your host's MCP config docs.

3. Restart your host

Quit and reopen Claude Desktop (or your chosen host). You should see alie appear in the available tools list.

4. Test it

In a new conversation, paste:

"Save this to ALIE: testing my new memory setup."

The host should call alie_capture and confirm it landed. Then in a new conversation:

"What have I been thinking about lately?"

The host should call alie_recall and tell you about the test capture.

Configuration

The server reads two environment variables:

  • ALIE_TOKEN (required) — your bearer token from alie.me/settings/tokens
  • ALIE_BASE_URL (optional) — defaults to https://alie.me. Set to http://localhost:3000 for local dev.

How it works

The MCP server is a thin stdio process spawned by your host. It does no heavy lifting itself — it just translates MCP tool calls into HTTPS requests against the alie.me REST API. Your data, embeddings, retrieval, and synthesis all live server-side. Updates land automatically when you redeploy alie.me; this package only changes when the tool surface itself does.

Security

  • Tokens are sha256-hashed at rest. The server never stores plaintext beyond what's in your host's local config.
  • Revoke any token at alie.me/settings/tokens. Revocation is immediate.
  • Each token is scoped to one user — ALIE only ever returns memories owned by the token's user.

License

Apache-2.0. Source: github.com/parimoody/alie_new under mcp/.