finviet-confluence-mcp
Allows reading Confluence page content by URL, returning title, space, version, and plain-text content.
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dobadevv/finviet-confluence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server