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

@jorgeluismlima/teamwork-mcp

v1.1.0

Published

MCP Server for Teamwork API V3 - Projects, Time Entries, People, Companies, Tags, and Updates

Readme

Teamwork MCP Server

A Model Context Protocol (MCP) server that connects to the Teamwork API, allowing AI agents to interact with projects, time entries, people, and companies.

Functionalities (Tools)

This server exposes the following tools:

Projects & Time Tracking

  • list_projects: Comprehensive project listing with 50+ filters (date, health, status, tags, etc.) and full API response support.
  • create_time_entry: Creates a time entry (timelog) for a specific project.
  • get_time_entries: Retrieves detailed time entries with 60+ filters (billed status, users, tags, etc.).
  • total_count_of_active_projects: Returns the total count of active projects.
  • total_billable_time_per_project: Returns total billable minutes per project (optional date range).
  • get_health_stats: Returns project health metrics (Good, Bad, OK, etc.), with various filters.
  • get_project_time_totals: Returns total hours/minutes for a project (optionally filtered by user).

Project Categories

  • list_of_project_categories: Lists all project categories with filtering options.
  • get_specific_project_category: Retrieves details of a specific category.
  • list_of_teamwork_project_categories: Helper tool to list categories.

People & Companies

  • list_people: Lists all people across the site with comprehensive filtering (user type, search term, job role, etc.).
  • get_project_people: Lists all people associated with a project, with 30+ optional filters.
  • get_person: Retrieves detailed information about a specific person (user).
  • list_companies: Lists companies (clients).
  • get_company: Retrieves details of a specific company.

Projects & Updates

  • get_project: Retrieves detailed information about a specific project, with comprehensive filtering and include options.
  • get_all_project_updates: Lists updates across all projects.
  • get_project_updates: Lists updates for a specific project.

Tags

  • get_all_tags: Lists all tags with filtering by name, item type, etc.
  • get_tag: Retrieves details of a specific tag.

Configuration

To use this server, you need to configure the following environment variables:

  • TEAMWORK_SITE_NAME: Your Teamwork site name/subdomain (e.g., agencyname).
  • TEAMWORK_USERNAME: Your Teamwork username or email.
  • TEAMWORK_PASSWORD: Your Teamwork password or API Key.

Prerequisites

Before using this MCP server, ensure you have:

  • Node.js: Version 18 or higher installed. Download Node.js
  • Teamwork Account: You must have an active Teamwork account.
  • API Credentials: You need your Teamwork Site Name and an API Key (or password) to authenticate.

Quick Start

You can run this server directly using npx without installing it globally or cloning the repository.

Client Configuration (Claude Desktop / IDEs)

To add this server to an MCP client, simply add the following to your MCP configuration file:

{
  "mcpServers": {
    "teamwork": {
      "command": "npx",
      "args": [
        "-y",
        "@jorgeluismlima/teamwork-mcp"
      ],
      "env": {
        "TEAMWORK_SITE_NAME": "your-site-name",
        "TEAMWORK_USERNAME": "your-username",
        "TEAMWORK_PASSWORD": "your-password-or-api-key"
      }
    }
  }
}

Local Development & Installation

If you want to modify the code or run it locally from the source:

  1. Clone and Install:

    git clone <repository-url>
    cd teamwork-mcp
    npm install
  2. Build the project:

    npm run build
  3. Run the server:

    node dist/index.js