things-mcp CLAUDE.md

things-mcp CLAUDE.md is an instructions file for coding agents from wbopan/things-mcp. It costs 1,387 tokens per session, scanned A, original, MIT.

A set of instructions for developing and testing an MCP server that connects Things, a task-management app for macOS, through its URL scheme.

In plain words
What is it for?
It helps with building the TypeScript project, running tests, starting the server, watching changes, and inspecting individual test files.
Why use it?
It gives an AI coding assistant the repository's commands, architecture, and testing guidance in one place.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/wbopan/things-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/wbopan/things-mcp

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for things-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/wbopan/things-mcp/claude-md.svg)](https://agentmods.dev/instructions/wbopan/things-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/wbopan/things-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/wbopan/things-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,387 This file is loaded in full into every session.
When invoked 1,387 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.01387 $0.01387
Opus 5 $0.00694 $0.00694
Sonnet 5 $0.00277 $0.00277
Haiku 4.5 $0.00139 $0.00139

Measured 5d ago against content hash 142aad51b612, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

things-mcp CLAUDE.md scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- Uses `child_process.exec` with `open` command for URL schemes
CLAUDE.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Development Commands

Essential Commands

npm run build          # Compile TypeScript to build/ directory
npm test              # Run Jest tests with ES module support
npm run dev           # Watch mode for development
npm start             # Run the MCP server
npm run inspector     # Launch MCP Inspector for testing tools

Testing Commands

npm test -- --testNamePattern="URL Builder"  # Run specific test suite
npm test -- tests/server.test.ts             # Run specific test file
npm run test:watch                           # Watch mode for tests

Memories

Architecture Overview

MCP Server Design

This is a Model Context Protocol (MCP) server that integrates with Things.app on macOS via URL scheme automation. The architecture follows these key patterns:

Core Flow:

  1. MCP tools receive structured parameters (validated with Zod schemas)
  2. Tools convert parameters to Things URL scheme format via url-builder.ts
  3. URLs are executed using macOS open command to trigger Things.app actions
  4. All operations return MCP-compliant content responses

Tool Registration Pattern: Each tool follows a consistent pattern in src/tools/:

  • Export a registerXxxTool(server: McpServer) function
  • Use Zod schemas for input validation with .shape property
  • Call server.tool(name, schema.shape, handler) to register
  • Return { content: [{ type: "text", text: "..." }] } format

Key Components

URL Construction (src/utils/url-builder.ts):

  • buildThingsUrl(): Converts parameters to Things URL scheme
  • openThingsUrl(): Executes URLs via macOS open command (async/await)
  • Uses encodeURIComponent() for proper percent encoding (spaces become %20)

Authentication (src/utils/auth.ts):

  • Update operations require THINGS_AUTH_TOKEN environment variable
  • Use requireAuthToken() for operations that modify existing items
  • Token obtained from Things.app Preferences → General → Enable Things URLs

Read the full file on GitHub · 132 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 132 lines · 1,387 tokens per session scan A 142aad51b612

Subscribe to this mod's changes

things-mcp CLAUDE.md is an instructions file published in the GitHub repository wbopan/things-mcp (3 stars, last pushed 8mo ago), licensed MIT. It adds 1,387 tokens to every session, about $0.0069 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories