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

@mohsp-99/mizito-mcp

v0.2.0

Published

MCP server exposing your Mizito (office.mizito.ir) account to AI tools over stdio: read tasks/messages/letters AND create tasks, comment, and send messages — built on @mohsp-99/mizito-core.

Readme

@mohsp-99/mizito-mcp

MCP server for Mizito: lets an AI client (Claude Desktop / Claude Code) both read your Mizito account — tasks, unread messages, conversations, formal letters — and act on it: create/edit/ comment/progress/complete tasks, send chat messages, send and reply to letters.

Built on @mohsp-99/mizito-core, the typed (unofficial) Mizito client. No browser required.

Writes to your account. MCP clients prompt before each tool call, so you allow or decline per action. Unofficial — not affiliated with Mizito; use on your own account and respect Mizito's terms.

Setup

The server needs a Mizito session. Simplest: give it your credentials via env vars — it logs in headless on first use and re-logs-in automatically when the session expires (password-only accounts; OTP/SSO accounts should mint a session with the browser login from the mizito-bridge repo instead).

MIZITO_DATA_DIR is where the session and downloads live (defaults to the server process's working directory — set it explicitly).

Claude Desktop

Add under mcpServers in claude_desktop_config.json (Windows: %APPDATA%\Claude\, macOS: ~/Library/Application Support/Claude/), then restart Claude Desktop:

{
  "mcpServers": {
    "mizito": {
      "command": "npx",
      "args": ["-y", "@mohsp-99/mizito-mcp"],
      "env": {
        "MIZITO_USERNAME": "09xxxxxxxxx",
        "MIZITO_PASSWORD": "your-password",
        "MIZITO_DATA_DIR": "/somewhere/private/mizito"
      }
    }
  }
}

Claude Code

claude mcp add mizito --scope user \
  --env MIZITO_USERNAME=09xxxxxxxxx \
  --env MIZITO_PASSWORD='your-password' \
  --env MIZITO_DATA_DIR=/somewhere/private/mizito \
  -- npx -y @mohsp-99/mizito-mcp

Then ask: "What Mizito tasks do I have?", "Any unread Mizito messages?", "Create a Mizito task 'Draft the report' in the Ops project". The client asks before each write.

Your password and the saved session are secrets; the config file and MIZITO_DATA_DIR/auth/ must stay private. If you already have a session file (e.g. from the repo's browser login), you can omit the credentials and just point MIZITO_DATA_DIR at the directory containing auth/session.json.

Tools

Readmizito_whoami, mizito_overview, mizito_my_tasks, mizito_unread_messages, mizito_projects, mizito_task_comments, mizito_download_file, mizito_conversations, mizito_read_conversation, mizito_letters, mizito_read_letter.

Write (mutating, prompted per call) — mizito_create_task, mizito_edit_task, mizito_comment_task, mizito_update_task_progress, mizito_complete_task, mizito_send_message, mizito_send_letter, mizito_reply_letter, mizito_mark_letter_read, mizito_archive_letter.

Read tools aggregate across all your workspaces; write tools target one workspace (the active one unless you name another) and resolve projects/boards/members/tasks by name, failing loudly on ambiguity.

License

MIT