finviet-confluence-mcp
Allows reading Confluence page content by URL, returning title, space, version, and plain-text content.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@finviet-confluence-mcpfetch the content of Confluence page https://kb.finviet.com.vn/display/SPACE/Page+Title"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
finviet-confluence-mcp
An MCP (Model Context Protocol) server that lets AI agents read Confluence page content by URL. Supports self-hosted Confluence with basic auth.
Tool exposed
Tool | Description |
| Fetch a Confluence page by URL and return its title, space, version, and plain-text content |
Supported URL formats:
https://kb.finviet.com.vn/pages/viewpage.action?pageId=12345https://kb.finviet.com.vn/pages/12345/Page-Titlehttps://kb.finviet.com.vn/display/SPACE/Page+Title
Related MCP server: confluence-mcp-server
Prerequisites
Node.js 18 or later
Access to a Confluence instance (self-hosted or Cloud) with valid credentials
Setup
1. Clone and install dependencies
git clone https://github.com/dobadevv/finviet-confluence-mcp.git
cd finviet-confluence-mcp
npm install2. Build
npm run buildThe compiled output lands in dist/.
3. Verify (optional)
CONFLUENCE_BASE_URL=https://kb.finviet.com.vn \
CONFLUENCE_USERNAME=your-username \
CONFLUENCE_PASSWORD=your-password \
node dist/index.jsYou should see:
finviet-confluence-mcp server started (stdio)Configuration
The server reads credentials from environment variables at startup:
Variable | Required | Example |
| Yes |
|
| Yes |
|
| Yes |
|
Adding to your agent
Cursor
Open Cursor Settings → MCP (or edit ~/.cursor/mcp.json) and add:
{
"mcpServers": {
"finviet_confluence": {
"command": "node",
"args": ["/absolute/path/to/finviet-confluence-mcp/dist/index.js"],
"env": {
"CONFLUENCE_BASE_URL": "https://kb.finviet.com.vn",
"CONFLUENCE_USERNAME": "your-username",
"CONFLUENCE_PASSWORD": "your-password"
}
}
}
}Restart Cursor. The read_confluence_page tool will appear in the agent's tool list.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"finviet_confluence": {
"command": "node",
"args": ["/absolute/path/to/finviet-confluence-mcp/dist/index.js"],
"env": {
"CONFLUENCE_BASE_URL": "https://kb.finviet.com.vn",
"CONFLUENCE_USERNAME": "your-username",
"CONFLUENCE_PASSWORD": "your-password"
}
}
}
}Restart Claude Desktop. The tool will be available automatically in every conversation.
Claude Code (CLI)
Add the server to your project or global Claude Code config:
claude mcp add finviet_confluence node /absolute/path/to/finviet-confluence-mcp/dist/index.js \
-e CONFLUENCE_BASE_URL=https://kb.finviet.com.vn \
-e CONFLUENCE_USERNAME=your-username \
-e CONFLUENCE_PASSWORD=your-passwordVerify the server is registered:
claude mcp listThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to interact with Atlassian products (Confluence and Jira) for content management, issue tracking, and project management through a standardized interface.2,649 npm6MIT
- AlicenseBqualityDmaintenanceAn MCP server that connects AI assistants to Confluence, enabling search and fetch of pages in real time.22MIT
- AlicenseBqualityAmaintenanceAn open-source MCP server that lets AI assistants read, create, search, and manage Confluence wiki pages. Supports Cloud, Server, and Data Center deployments with 28 tools.28177 npm5MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for Atlassian Cloud (Confluence & Jira) with seamless OAuth 2.0 authentication. Enables AI agents to document work in Confluence, manage Jira issues, and understand project context.34 PyPI4MIT