outline-mcp-server 5.8.2 → 5.8.4
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 +8 -0
- package/build/index.js +1 -1
- package/build/stdio.js +1 -1
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -16,6 +16,14 @@ One click install in Cursor:
|
|
|
16
16
|
|
|
17
17
|
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).
|
|
18
18
|
|
|
19
|
+
### Claude Code
|
|
20
|
+
|
|
21
|
+
Add the Outline MCP server to Claude Code with:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
claude mcp add outline -s user -t stdio -e OUTLINE_API_KEY=... -- npx -y --package=outline-mcp-server@latest -c outline-mcp-server-stdio
|
|
25
|
+
```
|
|
26
|
+
|
|
19
27
|
### Other Methods
|
|
20
28
|
|
|
21
29
|
This MCP server can be added to just about any agent with an appropriate command defining `npx` and env vars. Read below for more info on how to run the server manually.
|
package/build/index.js
CHANGED
package/build/stdio.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "outline-mcp-server",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.4",
|
|
4
4
|
"description": "An MCP server for interacting with Outline's API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"url": "https://github.com/mmmeff/outline-mcp-server"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsc && chmod +x build/index.js && chmod +x build/stdio.js",
|
|
22
|
+
"build": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('build', { recursive: true, force: true });\" && tsc && chmod +x build/index.js && chmod +x build/stdio.js",
|
|
23
23
|
"build:dxt": "./scripts/build-dxt.sh",
|
|
24
24
|
"prepare": "npm run build",
|
|
25
|
-
"watch": "
|
|
26
|
-
"watch:stdio": "
|
|
25
|
+
"watch": "npm run build && concurrently -n build,run -c blue.bold,green.bold \"tsc --watch --preserveWatchOutput\" \"node --watch build/index.js\"",
|
|
26
|
+
"watch:stdio": "npm run build && concurrently -n build,run -c blue.bold,green.bold \"tsc --watch --preserveWatchOutput\" \"node --watch build/stdio.js\"",
|
|
27
27
|
"dev": "concurrently -n 'build,inspector' -c 'blue.bold,green.bold' 'npm run watch' 'npm run inspector'",
|
|
28
|
-
"run-dxt": "dotenv
|
|
28
|
+
"run-dxt": "npm run build && dotenv node build/dxt.js",
|
|
29
29
|
"inspector": "npx @modelcontextprotocol/inspector@latest",
|
|
30
|
-
"start": "
|
|
30
|
+
"start": "node build/index.js",
|
|
31
31
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
|
|
32
32
|
"semantic-release": "semantic-release"
|
|
33
33
|
},
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"@semantic-release/changelog": "6.x",
|
|
44
44
|
"@semantic-release/git": "10.x",
|
|
45
45
|
"@types/node": "24.x",
|
|
46
|
-
"bun": "1.x",
|
|
47
46
|
"concurrently": "9.x",
|
|
48
47
|
"dotenv-cli": "11.x",
|
|
49
48
|
"prettier": "3.x",
|