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

@segosolutions/mcp-server

v1.0.1

Published

MCP server for Sego PM - enables Claude to manage tasks via API

Readme

Sego PM MCP Server

Model Context Protocol (MCP) server for Sego PM task management. This server allows Claude (or any MCP-compatible AI) to interact with your Sego PM tasks - query tasks, update statuses, add comments, create projects from codebases, and more.

Installation

npm install -g @segosolutions/mcp-server

Or use npx directly:

npx @segosolutions/mcp-server

Prerequisites

  1. Sego PM Account - Sign up at https://sego.pm
  2. API Key - Generate from Developer Dashboard → API Keys
  3. Node.js 18+

Quick Start

1. Get Your API Key

  1. Log into Sego PM at https://sego.pm
  2. Navigate to Developer Dashboard → API Keys
  3. Click "Create New API Key"
  4. Copy the key (format: sk_dev_XXXX...)

2. Configure Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "sego-pm": {
      "command": "npx",
      "args": ["-y", "@segosolutions/mcp-server"],
      "env": {
        "SEGO_API_KEY": "sk_dev_your_api_key_here",
        "SEGO_API_URL": "https://sego.pm"
      }
    }
  }
}

3. Restart Claude Desktop

The MCP server will connect automatically on startup.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | SEGO_API_KEY | Yes | - | Your Sego PM API key | | SEGO_API_URL | No | http://localhost:3000 | Sego PM API URL |

You can also use a .env file in your project directory.

Available Tools

Task Management

get_my_tasks

Get tasks assigned to you, optionally filtered by project or status.

Show me all my tasks in progress

search_tasks

Search tasks by keyword in title, description, or technical notes.

Search for tasks related to authentication

update_task_status

Update the status of a task (with workflow validation).

Move task abc123 to in progress

add_task_comment

Add a comment to a task (supports markdown).

Add a comment to task abc123 saying "Implemented basic auth flow"

assign_task

Assign a task to yourself or another user.

Assign task abc123 to me

Client Requests

get_client_request

Get a client request with all associated tasks and context.

search_client_requests

Search client requests by project, status, or keyword.

Projects

create_project_from_codebase

Create a Sego PM project from a local codebase with CLAUDE.md file. Auto-extracts project name, description, and tech stack.

Create a Sego PM project from this codebase

Available Resources

Task Detail

URI: sego://tasks/{taskId}

Get detailed information about a specific task including comments and full context.

Client Request Detail

URI: sego://client-requests/{requestId}

Get detailed information about a client request including all associated tasks.

Usage Examples

Daily Standup

Claude, give me a summary of my tasks:
- What's in progress?
- What's blocked?
- What's in review?

Working on a Task

I'm working on the password reset task.
Move it to in progress and show me the full details.

Completing Work

I've finished the user export feature in task xyz789.
Add a comment with what I did and move it to in review.

Creating a Project

Create a Sego PM project from this codebase.
My CLAUDE.md file is in the project root.

Task Status Workflow

Valid transitions:

  • AI_REVIEWDRAFT, BACKLOG, CANCELLED
  • DRAFTBACKLOG, CANCELLED
  • BACKLOGIN_PROGRESS, CANCELLED
  • IN_PROGRESSIN_REVIEW, BLOCKED, BACKLOG
  • BLOCKEDIN_PROGRESS, BACKLOG
  • IN_REVIEWCOMPLETED, IN_PROGRESS
  • COMPLETED → (terminal)
  • CANCELLED → (terminal)

Development

Local Development

# Clone the repo
git clone https://github.com/sego-solutions/sego-pm
cd sego-pm/mcp-server

# Install dependencies
npm install

# Set up environment
cp .env.example .env
# Edit .env with your API key

# Run in development mode
npm run dev

# Build
npm run build

# Run built version
npm start

Testing

# Type checking
npm run typecheck

Troubleshooting

MCP Server Not Connecting

  1. Check API key is valid and not expired
  2. Verify SEGO_API_URL is correct
  3. Check Claude Desktop logs:
    • macOS: ~/Library/Logs/Claude/
    • Windows: %APPDATA%\Claude\logs\

Invalid Status Transition

Tasks must follow the workflow (e.g., can't jump from BACKLOG to COMPLETED directly).

Permission Denied

Only tasks you're assigned to or created are accessible.

Support

  • Documentation: https://sego.pm/docs
  • Issues: https://github.com/sego-solutions/sego-pm/issues

License

MIT - See LICENSE