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

@morit/plugin-mcp

v1.8.0

Published

Local stdio MCP server for Morit Plugin development through the official @morit/cli SDK

Readme

@morit/plugin-mcp

Morit Plugin 개발 기능을 AI 에이전트에 제공하는 로컬 stdio MCP 서버입니다. manifest compiler, validation, light/dark preview, signing, Cloud Project sync와 Deployment는 SDK 1.7.12의 공식 @morit/cli를 재사용하므로 CLI와 MCP가 서로 다른 계약을 유지하지 않습니다.

설치

Node.js 20.12 이상이 필요합니다.

codex mcp add morit-plugin-local -- npx -y @morit/plugin-mcp
codex mcp list

claude mcp add --scope user morit-plugin-local -- npx -y @morit/plugin-mcp
claude mcp list

기본 workspace는 MCP process의 현재 작업 디렉터리입니다. 범위를 고정하려면 MORIT_PLUGIN_WORKSPACE에 절대 경로를 지정합니다. Cloud Tool을 사용하기 전에는 같은 OS 사용자로 한 번 로그인합니다.

npx -y @morit/cli login

권장 작업 순서

morit_sdk_contract
→ morit_docs_search / morit_docs_get
→ morit_project_create 또는 morit_project_open
→ morit_project_files_get / morit_project_files_put
→ morit_project_validate
→ UI가 있으면 morit_project_preview
→ morit_build_start / morit_build_status
→ morit_artifact_download

Local Tool은 프로젝트 생성·열기·revision 기반 편집, validate, preview, source ZIP, signed .mplg build를 제공합니다. CLI 로그인 뒤에는 morit_cloud_* Tool로 Project 연결·동기화, Secret, Connection, immutable Deployment를 관리할 수 있습니다.

사람이나 CI가 MCP 없이 작업할 때는 이 package에 CLI 인자를 전달하지 말고 공식 CLI를 사용합니다.

npx -y @morit/cli plugin validate .
npx -y @morit/cli plugin preview . --output ./dist/preview.html
npx -y @morit/cli plugin build .
npx -y @morit/cli plugin deploy . --visibility private

문서와 보안

배포 package의 assets/docs/는 저장소 docs/plugin_docs와 빌드 때 동기화됩니다. 먼저 assets/docs/README.md를 읽고, 에이전트 설치는 assets/docs/sdk-and-mcp.md, 전체 Tool 흐름은 같은 문서의 Local MCP 절을 참고하세요.

publisher private key와 OS credential은 Project source, source ZIP, MCP 응답에 포함되지 않습니다. .mplg에는 검증용 public key와 Ed25519 signature만 들어갑니다. Secret 값은 Cloud vault에만 저장하며 MCP의 list/get 응답은 identifier와 masked metadata만 반환합니다.

이미지 asset과 children/*.mplg는 Cloud JSON 경계에서만 검증된 binary envelope로 전송되고, 로컬 파일·source ZIP·최종 package에서는 원본 바이트가 유지됩니다.