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

@x-mcp/exploro

v1.2.0

Published

An MCP (Model Context Protocol) server that provides tools for interacting with the Exploro culinary API. This server allows AI assistants to manage ingredients, dishes, tags, and menus through simple tool calls.

Readme

Exploro MCP Server

An MCP (Model Context Protocol) server that provides tools for interacting with the Exploro culinary API. This server allows AI assistants to manage ingredients, dishes, tags, and menus through simple tool calls.

Features

  • Ingredients Management: List, create, update, and batch manage ingredients with price tracking
  • Dishes Management: Create and manage dishes with ingredients, tags, and detailed instructions
  • Tags Management: Create and list tags for categorizing dishes
  • Menus Management: Create weekly menus with dish associations and cost calculations
  • Enum Validation: Strong type validation for categories, units, and other structured data
  • Batch Operations: Efficient bulk creation of ingredients and dishes
  • External Tools: Support for dynamically loading additional tools from external APIs

Available Tools

Ingredients (8 tools)

  1. getIngredientCategories - Get all available ingredient categories
  2. getIngredientUnits - Get units with conversion factors and grouping
  3. listIngredients - List ingredients with filtering and pagination
  4. createIngredient - Create new ingredient with duplicate detection
  5. getIngredient - Get single ingredient with price history
  6. updateIngredient - Update ingredient with automatic price tracking
  7. deleteIngredient - Delete ingredient (admin only)
  8. batchCreateIngredients - Create up to 50 ingredients in one request

Dishes (5 tools)

  1. getDishCategories - Get dish categories including difficulty and meal groups
  2. listDishes - List dishes with filtering by status, difficulty, tags, etc.
  3. createDish - Create dish with ingredients, tags, and instructions
  4. getDish - Get single dish with full details
  5. batchCreateDishes - Create up to 20 dishes in one request

Tags (3 tools)

  1. getTagCategories - Get all available tag categories for classification
  2. listTags - List all tags with usage counts
  3. createTag - Create new tags for dish categorization

Menus (3 tools)

  1. listMenus - List menus with cost calculations and filtering
  2. createMenu - Create menu with dish associations
  3. getMenu - Get single menu with full details and costs

Installation

npm install -g @x-mcp/exploro
# or
pnpm add -g @x-mcp/exploro

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode (auto-restart on changes)
npm run dev

# Run the server
npm start

# Lint and format code
npm run lint
npm run format

Configuration

MCP Client Configuration

Add this to your MCP client settings:

{
  "mcpServers": {
    "exploro-mcp": {
      "command": "npx",
      "args": ["-y", "@x-mcp/exploro@latest"],
      "env": {
        "EXPLORO_BASE_URL": "http://localhost:3000", // Exploro API base URL
        "EXPLORO_API_KEY": "your_api_key_here" // Your Exploro API key
      }
    }
  }
}

Environment Variables

Create a .env file:

# Required: Exploro API configuration
EXPLORO_BASE_URL=http://localhost:3000
EXPLORO_API_KEY=your_api_key_here

# Optional: External tools API configuration
API_URL=https://your-api-endpoint.com/tools
API_KEY=your-external-api-key

Usage Examples

Once configured, the AI assistant can use commands like:

Ingredients:

  • "List all vegetables in the database"
  • "Create a new ingredient: tomatoes, 25000 VND per kg"
  • "Update the price of beef to 300000 VND per kg"
  • "Show me the price history for rice"

Dishes:

  • "Create a new dish: Pho Bo with beef and rice noodles"
  • "List all easy difficulty dishes"
  • "Show me all Vietnamese soup dishes"
  • "Add 20 traditional Vietnamese dishes in batch"

Menus:

  • "Create a weekly menu for 4 people"
  • "Show me the total cost for this week's menu"
  • "List all public menus"

Each tool makes direct HTTP requests to the Exploro API and returns structured response data.

Supported Enum Values

Ingredient Categories

vegetables, meat, seafood, spices, dairy, grains, fruits, sauces, other

Dish Difficulty

easy, medium, hard

Dish Status

active, inactive

Tag Categories

cooking_method, meal_type, cuisine, dietary, occasion, flavor, temperature, texture

Meal Groups

breakfast, lunch, dinner, snack

Menu Visibility

private, public

API Requirements

The tools interact with the Exploro API which should have these endpoints:

Ingredients:

  • GET /api/v1/ingredients - List ingredients
  • POST /api/v1/ingredients - Create ingredient
  • GET /api/v1/ingredients/{id} - Get single ingredient
  • PUT /api/v1/ingredients/{id} - Update ingredient
  • DELETE /api/v1/ingredients/{id} - Delete ingredient
  • POST /api/v1/ingredients/batch - Batch create ingredients

Dishes:

  • GET /api/v1/dishes - List dishes
  • POST /api/v1/dishes - Create dish
  • GET /api/v1/dishes/{id} - Get single dish
  • POST /api/v1/dishes/batch - Batch create dishes

Tags:

  • GET /api/v1/tags - List tags
  • POST /api/v1/tags - Create tag

Menus:

  • GET /api/v1/menus - List menus
  • POST /api/v1/menus - Create menu
  • GET /api/v1/menus/{id} - Get single menu

License

MIT