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

gardening-mcp

v1.0.0

Published

MCP server for gardening & plant care — planting calendar, watering schedule, companion planting, pest identification, soil analysis, harvest planner, and garden layout designer.

Readme

gardening-mcp

Disclaimer: Informational guidance only. Not professional horticultural advice. Results vary by local conditions, microclimate, and specific cultivars. Always verify with local extension services. See TERMS.md and PRIVACY.md.

MCP server (Model Context Protocol) for gardening and plant care. Helps gardeners plan, grow, and harvest with AI assistance.

Planting calendar, watering schedule, companion planting, pest identification, soil analysis, harvest planner, garden layout designer.

Pro Products

| Product | Price | Description | |---------|-------|-------------| | MCP Creator Kit | EUR 29 | Everything to create your own MCP server -- template, CLI, docs, examples | | SceneView Pro Starter Kit | EUR 49 | Complete Android 3D + AR app template -- 4 screens, ready to customize | | SceneView MCP Pro | EUR 9.99/mo | Premium MCP tools and priority support |

Sponsor on GitHub -- Help us build the future of AI-powered tools

Installation

npm install -g gardening-mcp

Or in your Claude Desktop / MCP configuration:

{
  "mcpServers": {
    "gardening": {
      "command": "npx",
      "args": ["-y", "gardening-mcp"]
    }
  }
}

Tools

plan_planting_calendar

Generate a month-by-month sow/transplant/harvest schedule based on USDA hardiness zone (1-13).

Parameters: zone, plants (array), season (optional: spring/summer/fall/winter/year_round).

calculate_watering

Calculate optimal watering frequency, amount, and timing. Accounts for soil type, climate, container growing, and sun exposure.

Parameters: plant_type, soil_type (clay/sandy/loam), climate (arid/temperate/tropical/continental/mediterranean), container (bool), sun_exposure (full_sun/partial_shade/shade).

find_companion_plants

Find good and bad companion plants with scientific reasoning and spacing recommendations.

Parameters: plant name.

identify_pest

Identify likely pests from observed symptoms. Returns top 3 matches with organic solutions and prevention.

Parameters: symptoms (yellowing/holes/wilting/spots/webbing), plant_type (optional), season (optional).

analyze_soil

Analyze soil quality from pH, NPK levels, and texture. Returns quality score (0-100), amendments, and crop recommendations.

Parameters: ph (0-14), nitrogen/phosphorus/potassium (low/medium/high), texture (clay/sandy/loam/silt/chalky/peat).

plan_harvest

Plan harvest dates from planting dates. Includes storage tips, succession planting, and harvest readiness signs.

Parameters: plants (array with name + planting_date), zone.

design_garden_layout

Design a garden with ASCII visualization. Accounts for sun direction, companion planting compatibility, and spacing.

Parameters: dimensions (width/length in meters), sun_direction (north/south/east/west), plants (array), style (raised_beds/rows/square_foot/permaculture).

Usage Examples

With Claude

"Plan a spring garden for zone 7 with tomatoes, basil, lettuce, and carrots"
"How often should I water my tomato in a clay soil container on a balcony?"
"What plants go well with tomatoes? What should I avoid?"
"My lettuce has holes in the leaves in spring — what pest is it?"
"My soil test shows pH 5.5, low nitrogen, medium P and K, sandy texture — what should I do?"
"I planted tomatoes May 1 and carrots April 15 — when do I harvest?"
"Design a 4x6m raised bed garden facing south with tomatoes, peppers, basil, and lettuce"

Programmatic

import { planPlantingCalendar } from "gardening-mcp/tools/plan-planting-calendar";

const calendar = planPlantingCalendar({
  zone: 7,
  plants: ["tomato", "lettuce", "carrot", "basil"],
  season: "spring",
});

Supported Plants

25 plants in the database: Tomato, Lettuce, Carrot, Pepper, Basil, Cucumber, Zucchini, Bean, Pea, Strawberry, Radish, Spinach, Kale, Onion, Garlic, Sunflower, Potato, Mint, Rosemary, Broccoli, Corn, Lavender, Parsley, Squash (Winter), Eggplant.

Development

npm install
npm test        # Run 150+ tests
npm run build   # Compile TypeScript
npm run dev     # Run with tsx (development)

License

Apache-2.0. See LICENSE.