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

@mirdor/planteria-mcp

v0.1.3

Published

MCP server for Planteria

Readme

@mirdor/planteria-mcp

A Model Context Protocol (MCP) stdio server that lets MCP-compatible AI clients access your Planteria plans.

It exposes tools to list your latest plans, review pending work, and fetch full plan details. Responses are formatted as Markdown for easy display in chat UIs.

Requirements

  • Node.js 18+
  • A Planteria account with an API key

Get a Planteria API key

  • In Planteria, open Settings → API Keys → Create Key.
  • Copy the key and keep it secure.

Configure MCP clients

Below are examples for popular clients. All use the same approach: run via npx -y @mirdor/planteria-mcp@latest and provide PLANTERIA_API_KEY.

Cursor

Add to ~/.cursor/mcp.json:

{
  "Planteria": {
    "command": "npx",
    "args": ["-y", "@mirdor/planteria-mcp@latest"],
    "env": {
      "PLANTERIA_API_KEY": "<YOUR_PLANTERIA_API_KEY>"
    }
  }
}

Codex

Add to ~/.codex/config.toml:

[mcp_servers.planteria]
command = "npx"
args = ["-y", "@mirdor/planteria-mcp@latest"]
env = {"PLANTERIA_API_KEY" = "<YOUR_PLANTERIA_API_KEY>"}

Claude Desktop

Add to your Claude Desktop settings JSON under mcpServers (path varies by OS):

{
  "mcpServers": {
    "planteria": {
      "command": "npx",
      "args": ["-y", "@mirdor/planteria-mcp@latest"],
      "env": { "PLANTERIA_API_KEY": "YOUR_KEY" }
    }
  }
}

Exposed tools

  • list-plans

    • Title: List Plans
    • Description: Return the latest five plans
    • Input: none
    • Output: Markdown with plan headings, ids, and summaries
  • get-pending-work

    • Title: Get Pending Work
    • Description: Return the first incomplete outcome and open deliverables for a plan
    • Input: { "planId": string }
    • Output: Markdown with the active outcome, deliverables, and actions
  • get-plan-details

    • Title: Get Plan Details
    • Description: Return the full plan with outcomes and deliverables
    • Input: { "planId": string }
    • Output: Markdown with plan summary, all outcomes, and nested deliverables/actions

Quick check (manual start)

You can start the server to verify it launches (it will wait for an MCP client on stdio):

PLANTERIA_API_KEY=your_key npx -y @mirdor/planteria-mcp@latest

Then use your MCP client to invoke list-plans, and pass a returned id to get-pending-work or get-plan-details.

Troubleshooting

  • 401 Unauthorized: API key missing or invalid. Check PLANTERIA_API_KEY.
  • 404 Plan not found: planId doesn’t exist for your account or is malformed.
  • 400 Malformed plan id: planId is not a valid Planteria document id.
  • Invalid JSON / network errors: Ensure a stable connection and retry.

Security

  • Treat your API key like a password; do not commit it to source control.
  • Rotate from Planteria settings if a key may be exposed.

License

MIT

Links

  • Repository: https://github.com/rigomart/planteria
  • Issues: use the repository issue tracker for questions and problems.