MCP Catalogs
Home

mcp-server-atlassian-confluence vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-atlassian-confluence
by aashari
filesystem
by modelcontextprotocol
Stars★ 54★ 85,748
30d uses
Score4777
Official
Categories
Knowledge GraphDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

mcp-server-atlassian-confluence · Summary

MCP server connecting AI assistants to Atlassian Confluence knowledge bases with API tools for spaces, pages, and search.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-server-atlassian-confluence · Use cases

  • Developers querying API documentation and technical guides in Confluence
  • Product managers searching for requirements and project updates across spaces
  • Support teams finding troubleshooting guides and knowledge base articles

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-server-atlassian-confluence · Install

Installation

  1. **Install the package globally:**

``bash npm install -g @aashari/mcp-server-atlassian-confluence ``

  1. **Configure for Claude Desktop:**

Add this to your Claude configuration file (~/.claude/claude_desktop_config.json): ``json { "mcpServers": { "confluence": { "command": "npx", "args": ["-y", "@aashari/mcp-server-atlassian-confluence"], "env": { "ATLASSIAN_SITE_NAME": "your-company", "ATLASSIAN_USER_EMAIL": "your.email@company.com", "ATLASSIAN_API_TOKEN": "your_api_token" } } } } ``

  1. **Set environment variables** (alternative method):

``bash export ATLASSIAN_SITE_NAME="your-company" export ATLASSIAN_USER_EMAIL="your.email@company.com" export ATLASSIAN_API_TOKEN="your_api_token" ``

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.