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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides global geocoding capabilities to convert city names and addresses into latitude/longitude coordinates using the free OpenStreetMap Nominatim API.15MIT
- AlicenseAqualityDmaintenanceTurn GPS coordinates into place name, category, and live opening hours via OpenStreetMap. Works in Claude, Hermes Agent, OpenClaw, and any MCP client.11MIT
- FlicenseNot gradedqualityDmaintenanceConverts Ghana Post GPS addresses into detailed location information including coordinates.1
- FlicenseNot gradedqualityCmaintenanceFetches webpages and returns clean, structured Markdown with metadata (title, author, publish date, description, domain, word count).
Related MCP Connectors
Geo MCP — geographic utilities from free public APIs
Google Maps places, reviews, contributor history, photos and posts as JSON. No Google Cloud.
Nominatim MCP — wraps OpenStreetMap Nominatim geocoding API (free, no auth)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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