You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: container/agent-runner/src/ipc-mcp-stdio.ts
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -694,6 +694,13 @@ server.tool(
694
694
async()=>runHostOperation('sync_tripit'),
695
695
);
696
696
697
+
server.tool(
698
+
'fetch_trakt_history',
699
+
'Fetch Trakt.tv watch history (shows, movies, ratings) for recommendations.',
700
+
{},
701
+
async()=>runHostOperation('fetch_trakt_history'),
702
+
);
703
+
697
704
server.tool(
698
705
'github_backup',
699
706
'Commit and push the group backup repo to GitHub. Use for nightly backups or when important state changes. The host handles git credentials — the container just triggers it.',
Copy file name to clipboardExpand all lines: tiles/nanoclaw-admin/skills/trakt-watch-history/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
name: trakt-watch-history
3
-
description: Fetch Trakt.tv watch history (shows, movies, ratings) for TV/movie recommendations. Runs host-side via run_host_script. Use when the user asks for show recommendations, what to watch, or wants to see their watch history.
3
+
description: Fetch Trakt.tv watch history (shows, movies, ratings) for TV/movie recommendations. Use when the user asks for show recommendations, what to watch, or wants to see their watch history.
4
4
---
5
5
6
6
# Trakt Watch History
7
7
8
-
Run via host: `mcp__nanoclaw__run_host_script(script: "trakt-watch-history.py")`
8
+
Run via host: `mcp__nanoclaw__fetch_trakt_history()`
0 commit comments