MCP Catalogs
Home

cursor10x-mcp vs filesystem

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

cursor10x-mcp
by aiurda
filesystem
by modelcontextprotocol
Stars★ 79★ 85,748
30d uses
Score4077
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit13 mo agothis month

cursor10x-mcp · Summary

DevContext (formerly Cursor10x) is an MCP server providing persistent multi-dimensional memory for AI assistants.

filesystem · Summary

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

cursor10x-mcp · Use cases

  • Maintaining project context across multiple development sessions
  • Enhancing AI assistant understanding of code relationships
  • Retaining technical decisions and architectural decisions over time

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

cursor10x-mcp · Install

Prerequisites

  • Node.js 18 or higher
  • npm or yarn package manager
  • Turso database account

Setup Steps

  1. **Configure Turso Database:**
# Install Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash

# Login to Turso
turso auth login

# Create a database
turso db create cursor10x-mcp

# Get database URL and token
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp
  1. **Configure Cursor MCP:**

Update .cursor/mcp.json in your project directory with the database URL and Turso auth token:

{
  "mcpServers": {
    "cursor10x-mcp": {
      "command": "npx",
      "args": ["cursor10x-mcp"],
      "enabled": true,
      "env": {
        "TURSO_DATABASE_URL": "your-turso-database-url",
        "TURSO_AUTH_TOKEN": "your-turso-auth-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.