things-mcp-server 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { areaItemsInputSchema, emptyInputSchema, idInputSchema, listAreasInputSchema, listProjectsInputSchema, listTagsInputSchema, tagTodosInputSchema, listTodosInputSchema, projectTodosInputSchema, searchTodosInputSchema, showItemInputSchema } from "../schemas/tool-schemas.js";
1
+ import { areaItemsInputSchema, emptyInputSchema, idInputSchema, listAreasInputSchema, listProjectsInputSchema, listTagsInputSchema, tagTodosToolInputSchema, tagTodosInputSchema, listTodosInputSchema, projectTodosInputSchema, searchTodosInputSchema, showItemInputSchema } from "../schemas/tool-schemas.js";
2
2
  import { toToolError, toToolSuccess } from "../utils/tool-response.js";
3
3
  export function registerReadTools(server, service) {
4
4
  server.registerTool("things_get_server_status", {
@@ -143,7 +143,7 @@ export function registerReadTools(server, service) {
143
143
  server.registerTool("things_list_tag_todos", {
144
144
  title: "List Things Tag Todos",
145
145
  description: "List todos under a tag with pagination.",
146
- inputSchema: tagTodosInputSchema,
146
+ inputSchema: tagTodosToolInputSchema,
147
147
  annotations: {
148
148
  readOnlyHint: true,
149
149
  destructiveHint: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "things-mcp-server",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "MCP server for controlling Things on macOS",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",