outline-mcp-server 5.5.0 → 5.5.1
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.
|
@@ -7,8 +7,8 @@ toolRegistry.register('list_documents', {
|
|
|
7
7
|
name: 'list_documents',
|
|
8
8
|
description: 'List documents in the Outline workspace with optional filters',
|
|
9
9
|
inputSchema: {
|
|
10
|
+
query: z.string().describe('Search query to filter documents'),
|
|
10
11
|
collectionId: z.string().describe('Filter by collection ID (optional)').optional(),
|
|
11
|
-
query: z.string().describe('Search query to filter documents (optional)').optional(),
|
|
12
12
|
limit: z.number().describe('Maximum number of documents to return (optional)').optional(),
|
|
13
13
|
offset: z.number().describe('Pagination offset (optional)').optional(),
|
|
14
14
|
sort: z.string().describe('Field to sort by (e.g. "updatedAt") (optional)').optional(),
|