forked from mmmeff/outline-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "outline-mcp-server",
"version": "5.8.5",
"description": "An MCP server for interacting with Outline's API",
"type": "module",
"bin": {
"outline-mcp-server": "./build/index.js",
"outline-mcp-server-stdio": "./build/stdio.js"
},
"files": [
"build"
],
"author": {
"name": "Matt Frey",
"email": "iam@mattfrey.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/mmmeff/outline-mcp-server"
},
"scripts": {
"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",
"build:dxt": "./scripts/build-dxt.sh",
"prepare": "npm run build",
"watch": "npm run build && concurrently -n build,run -c blue.bold,green.bold \"tsc --watch --preserveWatchOutput\" \"node --watch build/index.js\"",
"watch:stdio": "npm run build && concurrently -n build,run -c blue.bold,green.bold \"tsc --watch --preserveWatchOutput\" \"node --watch build/stdio.js\"",
"dev": "concurrently -n 'build,inspector' -c 'blue.bold,green.bold' 'npm run watch' 'npm run inspector'",
"run-dxt": "npm run build && dotenv node build/dxt.js",
"inspector": "npx @modelcontextprotocol/inspector@latest",
"start": "node build/index.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"semantic-release": "semantic-release"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/formbody": "^8.0.2",
"@modelcontextprotocol/sdk": "1.25.x",
"axios": "1.x",
"better-sqlite3": "^12.8.0",
"dotenv": "17.x",
"fastify": "5.x",
"omit-ts": "2.x",
"zod": "4.x"
},
"devDependencies": {
"@semantic-release/changelog": "6.x",
"@semantic-release/git": "10.x",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "24.x",
"concurrently": "9.x",
"dotenv-cli": "11.x",
"prettier": "3.x",
"semantic-release": "25.x",
"typescript": "5.x"
},
"keywords": [
"outline",
"mcp",
"getoutline.com",
"model-context-protocol"
],
"license": "MIT",
"engines": {
"node": ">=24"
}
}