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

@geshtu/mcp

v0.2.1

Published

MCP server for Geshtu — self-hosted shared memory for teams using LLMs. Exposes 6 tools (search, decisions, digest, log_decision, log_fact, close_session) that proxy to a self-hosted memory-api.

Readme

@geshtu/mcp

MCP server for Geshtu — self-hosted shared memory for teams using LLMs.

This package exposes 6 MCP tools that proxy to a self-hosted Geshtu API:

  • geshtu_search — hybrid (vector + keyword) search over your team's facts
  • geshtu_decisions — list recent decisions with rationale
  • geshtu_digest — async markdown digest of project activity
  • geshtu_log_decision — record a decision + rationale
  • geshtu_log_fact — record an explicit fact (with auto-dedup)
  • geshtu_close_session — close a session with summary, open questions, next actions

The actual memory layer (Postgres + pgvector + extraction worker) lives separately. You self-host the server, this package is just the client adapter. See https://github.com/crowditory/geshtu for setup.

Install

You don't install it directly — your MCP client (Claude Desktop, Cursor, Windsurf, Cline, …) launches it via npx -y @geshtu/mcp per your config.

Configure (Claude Desktop)

{
  "mcpServers": {
    "geshtu-playserv": {
      "command": "npx",
      "args": ["-y", "@geshtu/mcp"],
      "env": {
        "GESHTU_TOKEN": "tk_...",
        "GESHTU_API_URL": "https://geshtu.example.com/api",
        "GESHTU_USER": "[email protected]",
        "GESHTU_PROJECT": "playserv"
      }
    }
  }
}

| Env | Required? | What | |---|---|---| | GESHTU_TOKEN | yes | Bearer issued by your admin (starts with tk_) | | GESHTU_API_URL | yes (in production) | Base URL of memory-api, e.g. https://geshtu.example.com/api. Falls back to http://api:8000 for in-docker setups. | | GESHTU_USER | recommended | Your email or display name. Startup refuses if the token doesn't identify this user — catches "I pasted Bob's token by accident" mistakes. | | GESHTU_PROJECT | recommended | Project slug to use when a tool call doesn't specify one. With this set, you can ask "what's new" without the AI having to know the project slug. |

The token comes from your team's Geshtu admin (issued via the admin UI or docker compose exec api python -m geshtu.bootstrap). Tokens can be scoped to a single project — ask your admin for a project-scoped token if you want the strongest blast-radius limit. For Cursor, Windsurf, and other clients, see the per-client guides in the main repo.

Identity at startup

On launch the server calls /users/me with your token and prints to stderr something like:

Geshtu MCP: connected as Alice <[email protected]> (member) · project=playserv · api=https://geshtu.example.com/api

If that line says someone unexpected, fix your config before the AI starts calling tools as the wrong identity.

How it works

Claude Desktop ──stdio──▶ this package ──HTTP──▶ memory-api (your server)
                          (forwards token)        (validates JWT, runs query,
                                                   returns facts/decisions)

This package contains no business logic — JWT validation, embeddings, dedup, search ranking all happen on the API side. That keeps the surface stable even if internal endpoints change.

Requirements

  • Node.js 20+
  • A running Geshtu deployment (git clone && docker compose up)
  • A team token issued by your admin

License

AGPL-3.0-only. See the main repository for the full license text and trademark policy.