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

mcp-clickup-tools

v1.0.0

Published

A helper for MCP Clickup

Readme

MCP ClickUp Helper

📋 Descrição

O MCP ClickUp Helper é um servidor que facilita a interação com a API do ClickUp utilizando o Model Context Protocol (MCP). Esta ferramenta permite consultar e atualizar tarefas no ClickUp diretamente através de um MCP Client.

🚀 Tecnologias

  • TypeScript: Linguagem principal do projeto
  • Node.js: Ambiente de execução
  • MCP SDK: @modelcontextprotocol/sdk para integração com o protocolo MCP
  • Axios: Cliente HTTP para comunicação com a API do ClickUp
  • Zod: Validação de esquemas
  • Dotenv: Gerenciamento de variáveis de ambiente

🛠️ Requisitos

  • Node.js 16 ou superior
  • Uma conta no ClickUp com uma chave de API válida
  • ID da equipe do ClickUp

⚙️ Configuração

  1. Clone o repositório
  2. Instale as dependências:
    npm install
  3. Configure as variáveis de ambiente no arquivo .env:
    CLICKUP_API_KEY=sua_chave_api_do_clickup
    TEAM_ID=seu_id_de_equipe

🏗️ Construção

Para compilar o projeto, execute:

npm run build

🚀 Execução

Modo Produção

Após a compilação, você pode executar a ferramenta usando o MCP Inspector:

npx @modelcontextprotocol/inspector -e CLICKUP_API_KEY=sua_chave_api_do_clickup -e TEAM_ID=seu_id_de_equipe node build/index.js

Ou configure as variáveis no arquivo .env e execute:

npx @modelcontextprotocol/inspector node build/index.js

Modo Desenvolvimento

Para desenvolvimento com salvamento automático das alterações:

npm run watch

Este comando executa o compilador TypeScript em modo watch, recompilando automaticamente os arquivos quando são alterados. Para usar:

  1. Em um terminal, execute npm run watch para iniciar a compilação contínua
  2. Em outro terminal, execute npm start para iniciar o servidor
  3. Quando fizer alterações nos arquivos .ts, o TypeScript irá recompilá-los automaticamente
  4. Reinicie manualmente o servidor com npm start para ver as alterações aplicadas

🧩 Funcionalidades

  • Consultar detalhes de tarefas no ClickUp
  • Atualizar o status de tarefas no ClickUp
  • Integração com o Model Context Protocol para uso em fluxos de trabalho de IA

📄 Licença

Este projeto está disponível como software de código aberto.

👨‍💻 Contribuição

Contribuições são bem-vindas! Sinta-se à vontade para abrir um pull request ou uma issue.

Para adicionar no cursor no arquivo mcp.json

{
  "mcpServers": {
    "clickup-mcp-server": {
      "command": "node",
      "args": ["C:\\projetos\\mcp_ck_server\\build\\index.js"],
      "env": {
        "CLICKUP_API_KEY": "sua-api-key",
        "TEAM_ID": "seu-team-id"
      }
    }
  }
}