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

@milad_flow2026/logpose-mcp

v0.1.1

Published

One-line installer that wires Logpose's MCP server into Claude Desktop's config — prompts for your API token and merges the entry without touching existing servers.

Readme

@milad_flow2026/logpose-mcp

One-line installer that wires Logpose's MCP server into Claude Desktop's config. Prompts for your API token, writes the entry, preserves any other MCP servers you already have configured.

Install

npx @milad_flow2026/logpose-mcp install

The installer will:

  1. Locate your claude_desktop_config.json (macOS, Windows, or Linux).
  2. Make a timestamped backup if one exists.
  3. Prompt for your API token, MCP URL (default https://logpose.one/api/mcp), and the server name to use in the config (default logpose).
  4. Merge the new entry into mcpServers without touching other servers.
  5. Write atomically (temp file + rename) so a crashed installer can never leave a half-written config.

After install, restart Claude Desktop (Cmd+Q on macOS, not just close window). The wrench icon in the composer will list 14 new tools.

Get an API token

Mint one in the Logpose admin area: https://logpose.one/admin/organizations (superadmin access required). The token plaintext is shown once at creation — copy it immediately.

Non-interactive (CI / scripts)

npx @milad_flow2026/logpose-mcp install \
  --token=lpt_xxxxxxxxxxxxxxxx \
  --url=https://logpose.one/api/mcp \
  --name=logpose \
  --yes

Uninstall

npx @milad_flow2026/logpose-mcp uninstall

Removes the named entry (default logpose) and writes a backup. Other mcpServers entries stay untouched.

Claude Code users

You don't need this installer. Use the native CLI:

claude mcp add --scope user --transport http logpose \
  https://logpose.one/api/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"

Trust

This package has zero runtime dependencies — only Node.js built-ins (fs, os, path, readline). Audit the source on https://github.com/Milo-Flow/logpose under tools/mcp-installer/.

License

MIT — see LICENSE file.