confluence-mcp-server
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., "@confluence-mcp-serverwhat is at coordinates 57, 24?"
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.
confluence-mcp-server
MCP server for fetching and parsing confluence.org point pages.
Tools
confluence_get_point
Fetches and parses a point directly from confluence.org.
Warning: confluence.org can be very slow (10+ seconds per page). The tool has a 30s timeout.
Parameters:
lat— signed integer latitude (e.g.57,-33)lon— signed integer longitude (e.g.24,-3)
confluence_parse_html
Parses raw HTML you've already fetched yourself (e.g. via browser automation or curl). Useful for avoiding the slow server by batching fetches separately.
Parameters:
html— raw HTML stringlat— integer latitudelon— integer longitude
Related MCP server: geolabel-mcp
Returned data
Both tools return a human-readable summary and a JSON object:
{
lat: number;
lon: number;
prefix: string; // "57°N 24°E"
country: string; // "Latvia"
region?: string; // "Euskadi" (not always present)
locationDescription: string; // "4.8 km (3.0 miles) SW of Bolderāja, Rīgas, Latvia"
distanceKm: number; // 4.8
direction: string; // "SW"
nearestPlace: string; // "Bolderāja"
altitudeM?: number; // 19
visitCount: number; // 12
notes?: string; // contents of the Notes section, if present
}The nearestPlace field is what you'll usually want to use as the entity name in the database — but confirm with Andrew since it's subjective (sometimes a better-known nearby town is preferable to the literally closest village).
Setup
npm install
npm run buildClaude Desktop config
{
"mcpServers": {
"confluence": {
"command": "node",
"args": ["/Users/andrewzc/Projects/confluence-mcp-server/dist/index.js"]
}
}
}confluence-mcp-server
This 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/azamlerc/confluence-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server