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

@mako10k/mcp-memo

v0.5.1

Published

STDIO adapter that bridges the mcp-memory HTTP server to common MCP clients.

Readme

@mako10k/mcp-memo

@mako10k/mcp-memo は、Cloudflare Workers 上で稼働する mcp-memory-server を STDIO 経由で呼び出せる CLI アダプタです。npm exec / npx / bunx などから直接起動でき、Claude Desktop・Cline・VS Code など主要な MCP クライアントに簡単に組み込めます。

Hosted エンドポイント(https://mcp-memory-server.mako10k.workers.dev)を利用したい場合は、[email protected] までトークン発行をご依頼ください。有償のため、面識のある方・テスト協力いただける方・寄付をいただいた方に限ってご案内しています。

インストール不要で実行する

npm exec @mako10k/mcp-memo -- \
  --memory-http-url https://mcp-memory-server.mako10k.workers.dev \
  --memory-http-timeout-ms 15000

注: 実行時に NODE_EXTRA_CA_CERTS が必要な場合は、上記コマンドの前に環境変数を付与してください。

グローバルにインストールする場合

npm install -g @mako10k/mcp-memo
memory-mcp

環境変数

| 変数 | 説明 | 既定値 | | --- | --- | --- | | MEMORY_HTTP_URL | バックエンド HTTP エンドポイント | http://127.0.0.1:8787 | | MEMORY_HTTP_BEARER_TOKEN | 認証用 Bearer トークン | なし | | MEMORY_HTTP_HEADERS | 追加ヘッダー (JSON 文字列) | なし | | MEMORY_HTTP_TIMEOUT_MS | HTTP タイムアウト (ms) | なし | | MEMORY_NAMESPACE_DEFAULT | 相対パス解決に使うデフォルト名前空間。API キーが持つ推奨値を上書きできます。 | なし |

Node.js で自己署名 / 独自 CA 証明書を追加したい場合は NODE_EXTRA_CA_CERTS を利用してください。公開ワーカー https://mcp-memory-server.mako10k.workers.dev では、リポジトリと npm パッケージに含まれる certs/cloudflare-chain.pem を指定すると接続できます。

提供ツール

  • memory-save / memory-search / memory-delete
  • memory-list-namespaces / memory-list
  • memory-property / memory-property-delete
  • memory-relation-save / memory-relation-delete / memory-relation-list / memory-relation-graph
  • memory-inference-guidance(フェーズ 0〜4 のワークフロー概要を返すガイダンスレスポンス。常に英語で返却)
  • think (accepts arbitrary parameters and returns no response so you can insert a reflection pause)

MCP クライアントへの追加

  • Claude Desktop / Cline: npm exec @mako10k/mcp-memo をコマンドとして登録します。必要に応じて env に上記環境変数を設定してください。
  • VS Code: .vscode/mcp.json に下記のように記述します。
{
  "memory-mcp": {
    "type": "stdio",
    "command": "npm",
    "args": [
      "exec",
      "@mako10k/mcp-memo"
    ],
    "env": {
      "MEMORY_HTTP_URL": "https://<your-worker>.workers.dev",
      "MEMORY_HTTP_BEARER_TOKEN": "${input:memory_api_token}",
      "NODE_EXTRA_CA_CERTS": "${workspaceFolder}/certs/cloudflare-chain.pem"
    }
  }
}

証明書チェーンの配布

  • リポジトリ直下の certs/cloudflare-chain.pem および npm に公開される @mako10k/mcp-memo パッケージ (node_modules/@mako10k/mcp-memo/certs/cloudflare-chain.pem) に Cloudflare 側チェーン証明書を同梱しています。
  • VS Code などの MCP クライアントでは、NODE_EXTRA_CA_CERTS に上記ファイルへのパスを設定するとホスト済みエンドポイントへ接続できます。

ローカル開発

# 依存関係のインストール
bun install

# ウォッチ付きでビルド
bun run --cwd packages/stdio dev

# 単発でビルド
bun run --cwd packages/stdio build

# CLI 起動 (ビルド後)
bun run --cwd packages/stdio start

ライセンス

このパッケージは現在ライセンス未設定 (UNLICENSED) です。