lystbot 0.3.3 → 0.3.4

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.
@@ -0,0 +1 @@
1
+ ghu_mzDgu5Mqa67peAVpPyKXjYNsmVKTlu0CZrHJ
@@ -0,0 +1 @@
1
+ {"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NzQzNTEzMjMsIm5iZiI6MTc3NDM1MTAyMywiaWF0IjoxNzc0MzUxMDIzLCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6IlRvdXJBcm91bmQiLCJwZXJtaXNzaW9ucyI6W3siYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLlRvdXJBcm91bmQvKiJ9XX0.Q4tfiUTMAFzRPgpC0b3IgFFMNF23MRYSi53AQFm-O9PV-4VShMd-60vOfJ2Krhm-HxElaqHI6CirEAk1cI4RBA","expires_at":1774351323}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lystbot",
3
- "version": "0.3.3",
4
- "mcpName": "io.github.touraround/lystbot",
3
+ "version": "0.3.4",
4
+ "mcpName": "io.github.TourAround/lystbot",
5
5
  "description": "LystBot CLI - Manage your lists from the terminal",
6
6
  "main": "src/index.js",
7
7
  "bin": {
package/server.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.TourAround/lystbot",
4
+ "description": "Smart lists that your AI can actually use. Manage lists via MCP, CLI, or REST API.",
5
+ "repository": {
6
+ "url": "https://github.com/TourAround/LystBot",
7
+ "source": "github",
8
+ "subfolder": "cli"
9
+ },
10
+ "version": "0.3.3",
11
+ "packages": [
12
+ {
13
+ "registryType": "npm",
14
+ "identifier": "lystbot",
15
+ "version": "0.3.3",
16
+ "transport": {
17
+ "type": "stdio"
18
+ },
19
+ "runtime": "node",
20
+ "runtimeArgs": [">=18.0.0"],
21
+ "environmentVariables": []
22
+ }
23
+ ],
24
+ "tools": [
25
+ { "name": "list_lists", "description": "Get all your lists" },
26
+ { "name": "get_list", "description": "Get a specific list with items" },
27
+ { "name": "create_list", "description": "Create a new list" },
28
+ { "name": "delete_list", "description": "Delete a list" },
29
+ { "name": "add_items", "description": "Add one or more items to a list" },
30
+ { "name": "check_item", "description": "Check off an item" },
31
+ { "name": "uncheck_item", "description": "Uncheck an item" },
32
+ { "name": "remove_item", "description": "Remove an item from a list" },
33
+ { "name": "share_list", "description": "Generate a share code for a list" },
34
+ { "name": "join_list", "description": "Join a shared list via code" }
35
+ ]
36
+ }