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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@mseep/server-github-projects

v0.1.0

Published

MCP server for GitHub Projects V2 API

Readme

MCP Server for GitHub Projects

An MCP (Model Context Protocol) server for interacting with the GitHub Projects V2 API.

Description

This MCP server allows language models to interact with GitHub Projects V2 through a set of tools that provide create, read, update, and delete (CRUD) operations for projects and their associated resources such as items, fields, and views.

Features

Project Operations

  • List projects for a user or organization
  • Get details of a specific project
  • Create a new project
  • Update an existing project
  • Delete a project

Item Operations

  • List items in a project
  • Add an issue or pull request to a project
  • Create a draft item
  • Remove an item from a project
  • Get details of a specific item

Field Operations

  • List fields in a project
  • Create a new custom field
  • Update a field value for an item
  • Delete a custom field

View Operations

  • List views of a project
  • Create a new view
  • Update an existing view
  • Delete a view

Prerequisites

  • Node.js (version 18 or higher)
  • GitHub personal access token with repo and project scopes

Installation

npm install @devassistantai/server-github-projects

Configuration

Set the GITHUB_PERSONAL_ACCESS_TOKEN environment variable with your GitHub personal access token:

export GITHUB_PERSONAL_ACCESS_TOKEN=your_token_here

Usage

As a module

import { startServer } from '@devassistantai/server-github-projects';

startServer();

As an executable

npx mcp-server-github-projects

Example Usage

Here's an example of how to use this server with an MCP-based AI platform:

# List projects for a user
mcp__list_projects(owner="octocat", type="user")

# Create a new project
mcp__create_project(owner="my-org", title="My New Project", type="organization", description="A project to manage tasks")

# Add an item to the project
mcp__add_project_item(project_id="PVT_kwHOA...", content_id="I_kwDOA...")

# Create a single select custom field
mcp__create_project_field(project_id="PVT_kwHOA...", name="Status", dataType="SINGLE_SELECT", options=["In progress", "Completed", "Blocked"])

# Update a field value for an item
mcp__update_project_field_value(project_id="PVT_kwHOA...", item_id="PVTI_lADOA...", field_id="PVTF_lADOA...", value={optionId: "PVTFO_lADOA..."})

Limitations

  • This server uses the GitHub GraphQL API for Projects V2, which requires a personal access token with appropriate scopes.
  • Some advanced view customization operations, such as complex filter configuration, may not be available in this version.

Additional Resources

License

MIT