outline-mcp-server 5.6.1 → 5.7.0

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,7 +7,6 @@ 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'),
11
10
  collectionId: z.string().describe('Filter by collection ID (optional)').optional(),
12
11
  limit: z.number().describe('Maximum number of documents to return (optional)').optional(),
13
12
  offset: z.number().describe('Pagination offset (optional)').optional(),
@@ -56,10 +55,6 @@ toolRegistry.register('list_documents', {
56
55
  if (args.parentDocumentId) {
57
56
  payload.parentDocumentId = args.parentDocumentId;
58
57
  }
59
- // Only add query if it's provided
60
- if (args.query) {
61
- payload.query = args.query;
62
- }
63
58
  // Make the POST request to the documents.list endpoint
64
59
  const client = getOutlineClient();
65
60
  const response = await client.post('/documents.list', payload);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "outline-mcp-server",
3
- "version": "5.6.1",
3
+ "version": "5.7.0",
4
4
  "description": "An MCP server for interacting with Outline's API",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,22 +32,22 @@
32
32
  "semantic-release": "semantic-release"
33
33
  },
34
34
  "dependencies": {
35
- "@modelcontextprotocol/sdk": "1.13.1",
36
- "axios": "1.10.0",
37
- "dotenv": "16.5.0",
38
- "fastify": "5.4.0",
39
- "omit-ts": "^2.0.1",
40
- "zod": "3.25.67"
35
+ "@modelcontextprotocol/sdk": "1.25.x",
36
+ "axios": "1.x",
37
+ "dotenv": "17.x",
38
+ "fastify": "5.x",
39
+ "omit-ts": "2.x",
40
+ "zod": "4.x"
41
41
  },
42
42
  "devDependencies": {
43
- "@semantic-release/changelog": "^6.0.3",
44
- "@semantic-release/git": "^10.0.1",
45
- "@types/node": "20.19.1",
46
- "bun": "^1.2.17",
47
- "concurrently": "^9.2.0",
48
- "dotenv-cli": "^8.0.0",
49
- "prettier": "3.6.0",
50
- "semantic-release": "^22.0.12",
43
+ "@semantic-release/changelog": "6.x",
44
+ "@semantic-release/git": "10.x",
45
+ "@types/node": "24.x",
46
+ "bun": "1.x",
47
+ "concurrently": "9.x",
48
+ "dotenv-cli": "11.x",
49
+ "prettier": "3.x",
50
+ "semantic-release": "25.x",
51
51
  "typescript": "5.x"
52
52
  },
53
53
  "keywords": [
@@ -58,6 +58,6 @@
58
58
  ],
59
59
  "license": "MIT",
60
60
  "engines": {
61
- "node": ">=20"
61
+ "node": ">=24"
62
62
  }
63
63
  }