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

@moguw/things_mcp

v1.0.0

Published

MCP server for Things 3 task management via URL Scheme

Downloads

11

Readme

Things MCP Server

一个用于通过URL Scheme与Things 3任务管理应用集成的MCP(Model Context Protocol)服务器。

功能特性

  • ✅ 创建/更新/删除待办事项和项目
  • ✅ 导航和搜索
  • ✅ JSON批量导入

快速开始

1. 获取授权令牌

打开Things应用:Things → Settings → General → Enable Things URLs → Manage

2. 配置Claude Code MCP

在终端运行以下命令:

# 设置环境变量
export THINGS_AUTH_TOKEN="你的授权令牌"

# 添加 MCP 服务器
claude mcp add things --command "npx" --args "-y" "@moguw/things_mcp" --env "THINGS_AUTH_TOKEN=$THINGS_AUTH_TOKEN"

或者手动编辑配置文件(根据系统选择):

macOS: /Library/Application Support/ClaudeCode/managed-mcp.json Windows: C:\ProgramData\ClaudeCode\managed-mcp.json Linux: /etc/claude-code/managed-mcp.json

{
  "mcpServers": {
    "things": {
      "command": "npx",
      "args": ["-y", "@moguw/things_mcp"],
      "env": {
        "THINGS_AUTH_TOKEN": "你的授权令牌"
      }
    }
  }
}

3. 重启Claude Code(如果需要)

使用示例

在Claude Code中直接对话即可:

"帮我在Things中创建一个待办事项:明天给妈妈打电话"
"创建一个'学习Python'的项目"
"把ID为XXX的任务改为明天完成,并添加'紧急'标签"
"删除ID为XXX的待办事项"

可用工具

| 工具 | 说明 | 是否需要令牌 | |------|------|--------------| | add_todo | 创建待办事项 | ❌ | | add_project | 创建项目 | ❌ | | update_todo | 更新待办事项 | ✅ | | update_project | 更新项目 | ✅ | | delete_todo | 删除待办事项 | ✅ | | delete_project | 删除项目 | ✅ | | show | 导航到指定列表/项目 | ❌ | | search | 搜索 | ❌ | | json_import | JSON批量导入 | 视情况 | | get_version | 获取版本信息 | ❌ |

详细参数说明请参考 things_url.md

系统要求

  • macOS (Things 3 仅支持 macOS 和 iOS)
  • Node.js >= 18.0.0
  • Things 3 应用

开发

# 从源码运行
git clone https://github.com/moguw/things_mcp.git
cd things-mcp
npm install
npm run dev

# 测试
npm test

许可证

MIT