feat: Initial confluence-mcp server for realtime collaboration

Provides 8 MCP tools for Confluence Cloud:
- confluence_list_spaces, confluence_create_space
- confluence_search, confluence_get_page
- confluence_create_page, confluence_update_page
- confluence_get_comments, confluence_add_comment

Uses Confluence REST API v2 with basic auth.
Registered in Claude Code and mcp-proxy.

Refs: CF-935

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-02-10 18:09:30 +02:00
commit 2768650b42
3824 changed files with 859428 additions and 0 deletions

46
node_modules/raw-body/package.json generated vendored Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "raw-body",
"description": "Get and validate the raw body of a readable stream.",
"version": "3.0.2",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Raynos <raynos2@gmail.com>"
],
"license": "MIT",
"repository": "stream-utils/raw-body",
"dependencies": {
"bytes": "~3.1.2",
"http-errors": "~2.0.1",
"iconv-lite": "~0.7.0",
"unpipe": "~1.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.1.0",
"@stylistic/eslint-plugin-js": "^4.1.0",
"bluebird": "3.7.2",
"eslint": "^9.0.0",
"mocha": "10.7.0",
"neostandard": "^0.12.0",
"nyc": "17.0.0",
"readable-stream": "2.3.7",
"safe-buffer": "5.2.1"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"index.js"
],
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "mocha --trace-deprecation --reporter spec --check-leaks test/",
"test:ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test:cov": "nyc --reporter=html --reporter=text npm test",
"version": "node scripts/version-history.js && git add HISTORY.md"
}
}