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

@sjalq/lamdera-collab-mcp

v1.2.0

Published

Minimalist MCP server for collaborative project management with Lamdera backend integration

Readme

Lamdera Collab MCP

A Model Context Protocol (MCP) server that provides AI assistants with tools to interact with a Lamdera-based collaborative project management system. This server enables Claude and other MCP-compatible AI assistants to manage projects, tasks, documents, and comments programmatically.

Installation

npm install -g @sjalq/lamdera-collab-mcp

Usage

Run directly with npx (no installation required)

npx @sjalq/lamdera-collab-mcp --url YOUR_LAMDERA_URL --key YOUR_API_KEY

Run after global installation

lamdera-collab-mcp --url YOUR_LAMDERA_URL --key YOUR_API_KEY

Configuration for AI Assistants

Add this to your MCP client configuration (e.g., Claude Desktop):

{
  "mcpServers": {
    "lamdera-collab": {
      "command": "npx",
      "args": ["@sjalq/lamdera-collab-mcp", "--url", "YOUR_LAMDERA_URL", "--key", "YOUR_API_KEY"]
    }
  }
}

Available Tools

This MCP server provides 21 tools organized into 6 categories:

Project Management

  • list_projects - View all accessible projects with filtering options
  • get_project - Get detailed project information by ID
  • get_project_by_git_remote - Find project by git remote URL
  • create_project - Create new projects with tags and git integration
  • update_project - Update project details and metadata

Task Management

  • list_tasks - List and filter tasks by status, assignee, or project
  • get_task - Get detailed task information with comments
  • create_task - Create tasks (epics, stories, tasks, bugs, components)
  • update_task - Update task details, status, and priority

Task Workflow & Automation

  • take_next_task - Automatically pick the next highest priority todo task
  • take_next_review_task - Pick the next task in review status
  • move_task_to_top_or_bottom - Reorder tasks for priority management
  • task_reject_review - Reject review tasks back to todo with feedback
  • get_task_status_analytics - Get task status distribution and metrics

Documentation Management

  • search_documents - Search project documentation with text queries
  • get_document - Retrieve specific documents by ID
  • create_document - Create technical docs, specifications, or notes
  • update_document - Update existing documentation content

Collaboration & Communication

  • list_task_comments - View hierarchical task discussions
  • upsert_comment - Create or update comments on tasks and documents

Activity & Monitoring

  • get_recent_activity - Monitor project activity and changes

Key Features

  • Project Discovery: Find projects by git remote URL for seamless integration
  • Automated Workflows: Take next tasks automatically with priority ordering
  • Task Prioritization: Move tasks to top/bottom with normalized ordering
  • Review Management: Streamlined task review and rejection workflows
  • Rich Documentation: Full text search and document management
  • Activity Tracking: Monitor project progress and team activity
  • Hierarchical Comments: Threaded discussions on tasks and documents

Requirements

  • Node.js 18 or higher
  • A running Lamdera backend instance
  • Valid API key for authentication

What is Lamdera?

Lamdera is a full-stack pure functional programming platform for building web applications in Elm. This MCP server connects to a Lamdera backend that implements a collaborative project management system.

License

MIT

Author

Klaar

Repository

https://github.com/sjalq/lamdera-collab-mcp