@site-spy/mcp-server 0.0.3 → 0.0.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.
- package/README.md +0 -4
- package/dist/index.mjs +0 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,8 +102,6 @@ If you don't set `SITE_SPY_API_KEY`, the agent will ask you to authenticate inte
|
|
|
102
102
|
| Tool | Description |
|
|
103
103
|
| ------------------- | ------------------------------------ |
|
|
104
104
|
| `list_tags` | List all tags for organizing watches |
|
|
105
|
-
| `create_tag` | Create a new tag with name and color |
|
|
106
|
-
| `delete_tag` | Delete a tag |
|
|
107
105
|
| `get_notifications` | Get current notification settings |
|
|
108
106
|
|
|
109
107
|
## RSS Feeds
|
|
@@ -138,8 +136,6 @@ Once configured, try asking your AI assistant:
|
|
|
138
136
|
- "Pause all monitors tagged 'staging'"
|
|
139
137
|
- "Check all my sites right now"
|
|
140
138
|
- "Set up RSS feeds so I can follow changes in my feed reader"
|
|
141
|
-
- "Create a tag called 'production' and assign my watches to it"
|
|
142
|
-
|
|
143
139
|
## License
|
|
144
140
|
|
|
145
141
|
ISC
|
package/dist/index.mjs
CHANGED
|
@@ -211,27 +211,6 @@ server.registerTool("revoke_rss_token", {
|
|
|
211
211
|
}, async () => {
|
|
212
212
|
return jsonContent(await api("/rss", { method: "DELETE" }));
|
|
213
213
|
});
|
|
214
|
-
server.registerTool("create_tag", {
|
|
215
|
-
description: "Create a new tag for organizing watches.",
|
|
216
|
-
inputSchema: z.object({
|
|
217
|
-
title: z.string().describe("Tag name"),
|
|
218
|
-
color: z.string().optional().describe("Tag color (e.g. 'red', 'blue', '#ff0000')")
|
|
219
|
-
})
|
|
220
|
-
}, async ({ title, color }) => {
|
|
221
|
-
const body = { title };
|
|
222
|
-
if (color) body.color = color;
|
|
223
|
-
return jsonContent(await api("/tag", {
|
|
224
|
-
method: "POST",
|
|
225
|
-
body
|
|
226
|
-
}));
|
|
227
|
-
});
|
|
228
|
-
server.registerTool("delete_tag", {
|
|
229
|
-
description: "Delete a tag. Watches using this tag will be untagged.",
|
|
230
|
-
annotations: { destructiveHint: true },
|
|
231
|
-
inputSchema: z.object({ uuid: z.string().describe("Tag UUID to delete") })
|
|
232
|
-
}, async ({ uuid }) => {
|
|
233
|
-
return jsonContent(await api(`/tag/${uuid}`, { method: "DELETE" }));
|
|
234
|
-
});
|
|
235
214
|
server.registerTool("get_notifications", {
|
|
236
215
|
description: "Get the current notification settings (email, Telegram, web push, etc.).",
|
|
237
216
|
inputSchema: z.object({})
|