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

taskpilot-mcp

v2.0.0

Published

Model Control Protocol for VS Code Copilot

Readme

TaskPilot MCP

A Model Control Protocol implementation for VS Code Copilot that extends GitHub Copilot with additional tools for Jira, Git, Calendar, and Slack integrations. This will be used within an organisation.

Installation

# Install globally (recommended)
npm install -g taskpilot-mcp

# Or install locally in your project
npm install taskpilot-mcp

VS Code Copilot Integration

The TaskPilot MCP server runs automatically when requested by VS Code Copilot. No manual code initialization is required.

Simply add this to your VS Code settings (settings.json):

For global installation (recommended)

"github.copilot.advanced": {
  "model.contextProtocol.server.path": "taskpilot-mcp"
}

For local project installation

"github.copilot.advanced": {
  "model.contextProtocol.server.path": "${workspaceFolder}/node_modules/.bin/taskpilot-mcp"
}

Configuration

Option 1: Using VS Code Settings (Recommended)

Configure environment variables directly in VS Code settings.json:

"mcp": {
  "servers": {
    "taskpilot-mcp": {
      "type": "stdio",
      "command": "node", // add exact node path if using nvm (should be greater that 16.0.0)
      "args": [
        "{workspaceFolder}/node_modules/.bin/taskpilot-mcp"
      ],
      "env": {
        "USER_SLACK_TOKEN": "xoxb-your-slack-bot-token",
        "SLACK_SIGNING_SECRET": "your-slack-signing-secret",
        "JIRA_URL": "your-company.atlassian.net",
        "JIRA_API_TOKEN": "your-jira-api-token",
        "JIRA_USER_EMAIL": "[email protected]",
        "GOOGLE_CLIENT_ID": "your-google-client-id",
        "GOOGLE_CLIENT_SECRET": "your-google-client-secret",
        "GOOGLE_REDIRECT_URI": "http://localhost:3000/oauth2callback",
        "GOOGLE_REFRESH_TOKEN": "your-google-refresh-token",
        "GITHUB_AUTH_TOKEN": "your-auth-token",
        "GITHUB_USERNAME": "github-username",
        "GITHUB_OWNER": "github org name",
        "GITHUB_REPO": "github-repo"
      }
    }
  }
}

Option 2: Using .env File

Create a .env file in your project directory with the following variables:

# Jira Configuration
JIRA_URL=your-company.atlassian.net
JIRA_API_TOKEN=your_jira_api_token
[email protected]

# Slack Configuration
USER_SLACK_TOKEN=xoxb-your-slack-bot-token
SLACK_SIGNING_SECRET=your_slack_signing_secret

# Google Calendar Configuration
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_REDIRECT_URI=http://localhost:3000/oauth2callback
GOOGLE_REFRESH_TOKEN=your_google_refresh_token

Features

  • Jira Integration: Query and update Jira tickets directly from Copilot
  • Git Tools: Interact with your Git repositories
  • Calendar Integration: Schedule meetings and check availability
  • Slack Integration: Send messages and create channels

Security Note

This package uses environment variables for configuration. Never commit your .env file or hard-code sensitive tokens in your code.

License

MIT