outline-mcp-server 5.3.0 → 5.3.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.
- package/README.md +12 -6
- package/build/tools/createDocument.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
# Outline MCP Server
|
2
2
|
|
3
|
-
[](https://cursor.com/install-mcp?name=outline&config=eyJjb21tYW5kIjoibnB4IC15IC0tcGFja2FnZT1vdXRsaW5lLW1jcC1zZXJ2ZXJAbGF0ZXN0IC1jIG91dGxpbmUtbWNwLXNlcnZlci1zdGRpbyIsImVudiI6eyJPVVRMSU5FX0FQSV9LRVkiOiI8UkVQTEFDRV9NRT4iLCJPVVRMSU5FX0FQSV9VUkwiOiJodHRwczovL2FwcC5nZXRvdXRsaW5lLmNvbS9hcGkifX0%3D)
|
4
|
-
|
5
3
|
 • 
|
6
4
|
|
7
5
|
A Model Context Protocol (MCP) server that provides tools for interacting with [Outline](https://www.getoutline.com/)'s API, enabling AI agents to manage documents, collections, and other entities programmatically through the Outline knowledge base platform.
|
8
6
|
|
9
|
-
##
|
7
|
+
## Quick Installation
|
8
|
+
|
9
|
+
### Claude Desktop
|
10
|
+
|
11
|
+
🎉 **`outline-mcp-server` now has an extension for Claude Desktop!**
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
|
13
|
+
You can now download a Claude Desktop extension from the [releases page](https://github.com/mmmeff/outline-mcp/releases) for quick and easy setup (just double click it).
|
14
|
+
|
15
|
+
### Cursor
|
16
|
+
|
17
|
+
One click install in Cursor:
|
18
|
+
|
19
|
+
[](https://cursor.com/install-mcp?name=outline&config=eyJjb21tYW5kIjoibnB4IC15IC0tcGFja2FnZT1vdXRsaW5lLW1jcC1zZXJ2ZXJAbGF0ZXN0IC1jIG91dGxpbmUtbWNwLXNlcnZlci1zdGRpbyIsImVudiI6eyJPVVRMSU5FX0FQSV9LRVkiOiI8UkVQTEFDRV9NRT4iLCJPVVRMSU5FX0FQSV9VUkwiOiJodHRwczovL2FwcC5nZXRvdXRsaW5lLmNvbS9hcGkifX0%3D)
|
14
20
|
|
15
21
|
## Features
|
16
22
|
|
@@ -33,7 +33,7 @@ toolRegistry.register('create_document', {
|
|
33
33
|
if (args.template !== undefined) {
|
34
34
|
payload.template = args.template;
|
35
35
|
}
|
36
|
-
const response = await outlineClient.post('/documents', payload);
|
36
|
+
const response = await outlineClient.post('/documents.create', payload);
|
37
37
|
return { content: [{ type: 'text', text: JSON.stringify(response.data.data) }] };
|
38
38
|
}
|
39
39
|
catch (error) {
|