Files
mcp-outline-postgresql/package.json
Emanuel Almeida 1e462b5c49 fix: Add editorVersion field for document visibility
Documents without editorVersion='15.0.0' return "Not found" in Outline.
This was the missing field causing MCP-created documents to fail.

- Added editorVersion column to INSERT statement
- Set to '15.0.0' (current Outline editor version)
- v1.3.17

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 13:10:33 +00:00

38 lines
864 B
JSON

{
"name": "mcp-outline-postgresql",
"version": "1.3.17",
"description": "MCP Server for Outline Wiki via PostgreSQL direct access",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/index-http.js",
"dev": "ts-node src/index.ts",
"dev:http": "ts-node src/index-http.ts",
"test": "jest"
},
"keywords": [
"mcp",
"outline",
"postgresql",
"wiki"
],
"author": "Descomplicar",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"pg": "^8.11.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@types/pg": "^8.10.9",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}