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

@nasseratic/monday-mcp-server

v0.2.4

Published

Minimal Monday.com My Items MCP Server

Downloads

44

Readme

Monday.com MCP Server

A Monday.com Model Context Protocol (MCP) server implementation in TypeScript for handling Monday.com task-related operations.

Available Tools

This MCP server provides the following tools for interacting with Monday.com:

  • my-items: Get items assigned to the current user for the configured board
  • add-task: Add a new task (item) to the Monday.com board
  • update-task-status: Update the status of a task (item) with intelligent status matching
  • update-task: Update a task (item) with custom column values (advanced)
  • get-groups: Get all groups from the Monday.com board

Status Update Examples

The update-task-status tool provides intelligent status matching. You can use natural language like:

  • "in progress" - matches "In Progress", "Working", "WIP", etc.
  • "done" - matches "Done", "Complete", "Completed", "Finished", etc.
  • "in review" - matches "In Review", "Review", "Pending Review", etc.
  • "stuck" - matches "Stuck", "Blocked", "Blocker", etc.

Getting Started

Option 1: Direct Usage (Recommended)

Use the package directly with pnpm dlx without cloning:

  1. Configure MCP Server

    Configure your environment variables in your ~/.cursor/mcp.json file:

    {
      "mcpServers": {
        "monday": {
          "command": "pnpm",
          "args": ["dlx", "@nasseratic/monday-mcp-server@latest"],
          "env": {
            "MONDAY_API_TOKEN": "your_monday_api_token",
            "MONDAY_TASKS_BOARD_ID": "your_monday_board_id"
          }
        }
      }
    }
    • MONDAY_API_TOKEN: Your Monday.com API token (v2 Token)
    • MONDAY_TASKS_BOARD_ID: The ID of the Monday.com board containing your tasks

Option 2: Development Setup

If you want to modify the source code or contribute:

  1. Clone the repository

    git clone https://github.com/Nasseratic/mcp-server-monday.git
    cd mcp-server-monday
  2. Install dependencies

    pnpm install
  3. Development Configuration

    Configure your environment variables in your ~/.cursor/mcp.json file to use the local development version:

    {
      "mcpServers": {
        "monday": {
          "command": "pnpm",
          "args": ["start"],
          "cwd": "/path/to/your/mcp-server-monday",
          "env": {
            "MONDAY_API_TOKEN": "your_monday_api_token",
            "MONDAY_TASKS_BOARD_ID": "your_monday_board_id"
          }
        }
      }
    }
    • Replace /path/to/your/mcp-server-monday with the actual path where you cloned the repository.

Monday.com API Setup

To get your Monday.com API token:

  1. Go to your Monday.com account
  2. Click on your avatar > Developers > My API tokens
  3. Generate a new API token with appropriate permissions

To get your Monday.com board ID:

  1. Open the board in Monday.com
  2. The board ID is the number in the URL after "boards/"