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

@projora/mcp-server

v1.1.0

Published

MCP server for Projora task management - integrate with Claude Code and OpenCode to manage tasks, update statuses, and track work

Downloads

168

Readme

@projora/mcp-server

A Model Context Protocol (MCP) server for Projora task management. Integrates with Claude Code and OpenCode to manage tasks directly from your AI coding assistant.

Features

  • start_task - Start working on a task (sets status to "In Progress", adds comment, returns full context)
  • complete_task - Mark a task as done with an optional summary
  • get_task - Get a specific task by its key (e.g., "PRJ-123")
  • list_projects - List all projects
  • list_tasks - List tasks with optional filters (project, status, priority, assignee)
  • my_tasks - Get tasks assigned to you
  • overdue_tasks - Get all overdue tasks
  • search_tasks - Search for tasks and projects by keyword
  • update_task - Update task fields (title, description, priority, assignee, due date)
  • update_task_status - Update task status
  • add_comment - Add a comment to a task
  • log_time - Log time worked on a task
  • get_project - Get project details including linked GitHub repository
  • get_config - Get available statuses, priorities, and task types
  • dashboard_stats - Get dashboard statistics

Installation

npx @projora/mcp-server

Or install globally:

npm install -g @projora/mcp-server

Configuration

The server requires two environment variables:

  • PROJORA_GRAPHQL_URL - Your Projora GraphQL endpoint (defaults to https://api.projora.app/graphql)
  • PROJORA_AUTH_TOKEN - Your API token from Projora

Get your API token from Settings > Integrations in the Projora web app.

Usage with Claude Code

Add to your Claude Code configuration (~/.claude.json):

{
  "projora": {
    "command": "npx",
    "args": ["-y", "@projora/mcp-server"],
    "env": {
      "PROJORA_AUTH_TOKEN": "your-api-token"
    }
  }
}

Usage with OpenCode

Add to your OpenCode configuration (opencode.json):

{
  "mcp": {
    "projora": {
      "type": "local",
      "command": ["npx", "-y", "@projora/mcp-server"],
      "enabled": true,
      "environment": {
        "PROJORA_AUTH_TOKEN": "your-api-token"
      }
    }
  }
}

Note: PROJORA_GRAPHQL_URL defaults to https://api.projora.app/graphql. Only set it if you're using a self-hosted instance.

Example Prompts

Once configured, use prompts like:

  • "Start working on task PRJ-123"
  • "Show me my tasks"
  • "What are the overdue tasks?"
  • "Search for tasks related to authentication"
  • "Mark task PRJ-123 as done with summary: Fixed the login bug"
  • "Add a comment to PRJ-123: Need to review the test coverage"
  • "Log 2 hours on task PRJ-123"

Workflow Example

  1. Start a task: "Use projora to start working on task PRJ-123"

    • Status automatically changes to "In Progress"
    • A comment is added noting work has started
    • You get the full task context including description, GitHub repo, and suggested branch name
  2. Work on the task: Make your changes, commit code, etc.

  3. Complete the task: "Use projora to complete task PRJ-123 with summary: Implemented the new feature with tests"

    • Status changes to "Done"
    • A completion comment is added with your summary

Development

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

# Install dependencies
npm install

# Build
npm run build

# Run locally
PROJORA_GRAPHQL_URL=http://localhost:8000/graphql PROJORA_AUTH_TOKEN=your-token npm start

License

MIT

Links