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

@opentask/taskin-task-server-mcp

v0.1.7

Published

Model Context Protocol (MCP) server for task management integration with LLMs

Readme

@opentask/taskin-mcp

Model Context Protocol (MCP) server for task management integration with LLMs like Claude, GPT-4, and GitHub Copilot.

Features

  • ✅ Full MCP protocol implementation
  • ✅ Exposes task operations as MCP tools
  • ✅ Task context via MCP resources
  • ✅ Task templates via MCP prompts
  • ✅ Real-time task updates
  • ✅ TypeScript support
  • ✅ Auto-discovery in VS Code and Claude Desktop

Quick Start

VS Code (GitHub Copilot)

The server will appear automatically in VS Code's MCP server list after installation:

npm install -g @opentask/taskin-mcp

Then in VS Code:

  1. Open Command Palette (Cmd+Shift+P)
  2. Search for "Configure Tools"
  3. Find "taskin" in the MCP servers list
  4. Enable it

Or add manually to your settings.json:

{
  "github.copilot.chat.mcpServers": {
    "taskin": {
      "command": "taskin-mcp-server"
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "taskin": {
      "args": ["-y", "@opentask/taskin-task-server-mcp"],
      "command": "npx"
    }
  }
}

Installation

Global (Recommended)

npm install -g @opentask/taskin-mcp

Project-specific

pnpm add @opentask/taskin-mcp

Programmatic Usage

import { createTaskManager } from '@opentask/taskin-task-manager';
import { createTaskMCPServer } from '@opentask/taskin-task-server-mcp';

// Create task manager with your provider
const taskManager = createTaskManager({
  provider: 'fs',
  config: { tasksDirectory: './TASKS' },
});

// Start MCP server
const server = createTaskMCPServer(taskManager, {
  name: 'taskin-server',
  version: '1.0.0',
});

await server.connect({
  transport: 'stdio', // or 'sse'
});

console.log('MCP server running');

MCP Tools

  • list_tasks - List all tasks with filters
  • get_task - Get task details
  • start_task - Start working on a task
  • finish_task - Mark task as complete
  • pause_task - Pause task work
  • lint_tasks - Validate tasks

MCP Resources

  • task://{taskId} - Get full task context
  • tasks://status/{status} - Get tasks by status

MCP Prompts

  • start-task - Template for starting a task
  • review-task - Template for reviewing a task

License

MIT © OpenTask