diff options
Diffstat (limited to 'apps/mcp/src')
| -rw-r--r-- | apps/mcp/src/bookmarks.ts | 7 | ||||
| -rw-r--r-- | apps/mcp/src/lists.ts | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/apps/mcp/src/bookmarks.ts b/apps/mcp/src/bookmarks.ts index 14043489..57b6959b 100644 --- a/apps/mcp/src/bookmarks.ts +++ b/apps/mcp/src/bookmarks.ts @@ -36,6 +36,7 @@ machine learning is:fav`), query: { q: query, limit: 10, + includeContent: false, }, }, }); @@ -63,6 +64,9 @@ mcpServer.tool( path: { bookmarkId, }, + query: { + includeContent: false, + }, }, }); if (res.error) { @@ -149,6 +153,9 @@ mcpServer.tool( path: { bookmarkId, }, + query: { + includeContent: true, + }, }, }); if (res.error) { diff --git a/apps/mcp/src/lists.ts b/apps/mcp/src/lists.ts index 1e0f3a8a..eee1cc96 100644 --- a/apps/mcp/src/lists.ts +++ b/apps/mcp/src/lists.ts @@ -33,6 +33,9 @@ mcpServer.tool( path: { listId, }, + query: { + includeContent: false, + }, }, }); if (res.error) { |
