finviet-confluence-mcp
An MCP server that enables AI agents to read Confluence page content by URL, supporting self-hosted Confluence with basic auth.
README
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 |
|---|---|
read_confluence_page |
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
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 install
2. Build
npm run build
The 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.js
You should see:
finviet-confluence-mcp server started (stdio)
Configuration
The server reads credentials from environment variables at startup:
| Variable | Required | Example |
|---|---|---|
CONFLUENCE_BASE_URL |
Yes | https://kb.finviet.com.vn |
CONFLUENCE_USERNAME |
Yes | john.doe |
CONFLUENCE_PASSWORD |
Yes | s3cr3t |
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-password
Verify the server is registered:
claude mcp list
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.