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

@mseep/mmk-mcp

v1.0.18

Published

MCP server for Magic Meal Kits with Notion integration. Enables AI assistants to duplicate Notion blocks programmatically through your Magic Meal Kits API.

Readme

Magic Meal Kits

Magic Meal Kits MCP Server

smithery badge

A Model Context Protocol server for Magic Meal Kits that provides server version information as a tool for AI assistants.

How It Works

The MCP server:

  • Connects to your Magic Meal Kits API
  • Enables AI assistants to check the Magic Meal Kits server version
  • Returns structured responses with version information
  • Follows secure authentication practices using API keys

Benefits

  • Check Magic Meal Kits server version programmatically through natural language requests
  • Maintain a clean separation between your API backend and AI integration

Usage with Claude Desktop

Prerequisites

  • NodeJS
  • MCP Client (like Claude Desktop App)
  • Magic Meal Kits API Key

Installation

Installing via Smithery

To install mmk-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @pureugong/mmk-mcp --client claude

Global Installation (Optional)

You can install the package globally using npm:

npm install -g mmk-mcp

Current version: 1.0.17

Claude Desktop Configuration

To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:

{
    "mcpServers": {
        "magic-meal-kits": {
            "command": "npx",
            "args": ["-y", "mmk-mcp"],
            "env": {
                "MMK_API_KEY": "<your-api-key>",
                "MMK_API_BASE_URL": "<your-api-base-url>"
            }
        }
    }
}
  • MMK_API_KEY - Your Magic Meal Kits API key
  • MMK_API_BASE_URL - The base URL for your Magic Meal Kits API

Development

  1. Clone this repository from https://github.com/pureugong/mmk-mcp
  2. Create a .env file based on .env.example
  3. Install dependencies: npm install
  4. Build the project: npm run build
  5. Run the server: npm start

Available Tools

| Tool Name | Description | Parameters | |-----------|-------------|------------| | magic_meal_kits_server_version | Check the Magic Meal Kits server version | No parameters required |

Debugging

Running the MCP Server Directly

For debugging purposes, you can run the MCP server directly to see console output and any errors:

  1. Create a .env file in the project root with all required environment variables:
MMK_API_KEY=your-api-key
MMK_API_BASE_URL=https://magic-meal-kits-isjxytikta-uw.a.run.app
  1. Run the server directly:
# Using the enhanced debug script:
npm run debug

# Or if installed globally:
mmk-mcp
  1. In another terminal, you can test the server using the MCP Inspector tool:
# Install the MCP Inspector
npm install -g @modelcontextprotocol/inspector

# Connect to your running MCP server
npx @modelcontextprotocol/inspector stdio -c "node" -a "build/src/index.js"

# Or if you've installed the inspector globally:
mcp-inspector stdio -c "node" -a "build/src/index.js"

This will open an interactive inspector where you can test the MCP tools and view responses from the server.

Troubleshooting

If you encounter issues with the MCP server, here are some common solutions:

Server Does Not Support Tools Error

If you see an error like Error: Server does not support tools (required for tools/call), make sure you're using version 1.0.11 or later.

To update to the latest version, run:

npm install -g mmk-mcp@latest