feat: implement initial Docmost Model Context Protocol (MCP) server for documentation management.

This commit is contained in:
Moritz Krause
2026-01-31 23:56:58 +01:00
commit 0900260765
10 changed files with 2324 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"]
}