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

planning-task-mcp

v1.2.0

Published

MCP Server for Planning Task - Full autonomous project management via Firebase Realtime Database

Readme

planning-task-mcp

MCP Server for full autonomous project management. Manage projects, sprints, tasks, bugs, proposals, and more — all from your AI coding assistant.

Works with Claude Code, Claude Desktop, Codex (OpenAI), Gemini CLI, Cursor, Windsurf, and VS Code Copilot.

Features

  • Projects, sprints, and task management with User Stories
  • Bug tracking and proposals
  • Team collaboration (members, invitations, comments, notifications)
  • Sprint planning from natural language documents
  • Analytics dashboards and burndown charts
  • Achievements and gamification
  • Workflow automation rules
  • Time tracking and retrospectives

Prerequisites

  • Node.js >= 18
  • A Firebase project with Realtime Database enabled
  • A Firebase Service Account Key (JSON file)

Install

npm install -g planning-task-mcp

Setup

After installing, run the interactive setup:

planning-task-mcp-setup

This will:

  1. Ask for your Firebase Service Account Key path
  2. Configure your Firebase Database URL
  3. Set your default user ID and name
  4. Auto-register the MCP in all detected AI clients (Claude Code, Codex, Gemini, Cursor, etc.)
  5. Configure auto-approve permissions where supported

CLI mode (non-interactive)

planning-task-mcp-setup \
  --sa-key /path/to/serviceAccountKey.json \
  --db-url https://your-project-default-rtdb.firebaseio.com \
  --user-id your-firebase-uid \
  --user-name "Your Name"

Manual configuration

If you prefer to configure manually, add this to your MCP client config:

Claude Code (~/.mcp.json):

{
  "mcpServers": {
    "planning-task-mcp": {
      "command": "planning-task-mcp",
      "args": [],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/serviceAccountKey.json",
        "FIREBASE_DATABASE_URL": "https://your-project-default-rtdb.firebaseio.com",
        "DEFAULT_USER_ID": "your-uid",
        "DEFAULT_USER_NAME": "Your Name"
      }
    }
  }
}

Codex (~/.codex/config.toml):

[mcp_servers.planning-task-mcp]
command = "planning-task-mcp"
args = []

[mcp_servers.planning-task-mcp.env]
GOOGLE_APPLICATION_CREDENTIALS = "/path/to/serviceAccountKey.json"
FIREBASE_DATABASE_URL = "https://your-project-default-rtdb.firebaseio.com"
DEFAULT_USER_ID = "your-uid"
DEFAULT_USER_NAME = "Your Name"

Gemini CLI (~/.gemini/settings.json):

{
  "mcpServers": {
    "planning-task-mcp": {
      "command": "planning-task-mcp",
      "args": [],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/serviceAccountKey.json",
        "FIREBASE_DATABASE_URL": "https://your-project-default-rtdb.firebaseio.com",
        "DEFAULT_USER_ID": "your-uid",
        "DEFAULT_USER_NAME": "Your Name"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | GOOGLE_APPLICATION_CREDENTIALS | Yes | Path to Firebase Service Account Key JSON | | FIREBASE_DATABASE_URL | Yes | Firebase Realtime Database URL | | DEFAULT_USER_ID | No | Default Firebase Auth UID for operations | | DEFAULT_USER_NAME | No | Default user display name |

Available Tools (70+)

| Category | Tools | |----------|-------| | Projects | create, list, get, update, delete, dashboard, summary | | Sprints | create, list, get, update, delete, burndown, retrospective | | Tasks | create, list, get, update, delete, search, assign, change status | | Bugs | create, list, get, update, delete | | Epics | create, list, get, update, delete, add/remove tasks | | Proposals | create, list, get, update, delete, approve/reject | | Comments | create, list, delete | | Notifications | list, send, mark read, clear | | Members | add, list, remove, change role | | Invitations | send, list, accept, reject | | Users | list, get, search | | Analytics | project dashboard, developer workload, leaderboard | | Planning | create full plan from document, create sprint plan | | Templates | create, list, delete task templates | | Workflows | create, list, update, delete, toggle automation rules | | Time Tracking | create, list, delete time entries | | Saved Views | create, list, delete custom views | | Achievements | list, evaluate user achievements | | Standup | get daily standup data |

Usage

Once configured, just talk to your AI assistant:

  • "Create a new project called MyApp"
  • "Plan a sprint from this requirements document"
  • "Show me the burndown chart for the current sprint"
  • "Assign task T-123 to user X"
  • "What's the developer workload for this sprint?"

License

MIT