MCP Catalogs
Home

ai-agent-dev-week4-mcp-server vs filesystem

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

ai-agent-dev-week4-mcp-server
by jmjmlang
filesystem
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3377
Official
Categories
DatabaseDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

ai-agent-dev-week4-mcp-server · Summary

An MCP server exposing a Person database with CRUD operations for AI agents using Next.js and Prisma.

filesystem · Summary

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

ai-agent-dev-week4-mcp-server · Use cases

  • Personal CRM assistant that can manage contact information
  • Team management tool integrated with AI agents
  • Automated contact sync between different systems

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

ai-agent-dev-week4-mcp-server · Install

Installation

  1. Clone the repository
  2. Install dependencies: npm install
  3. Set up your database: Add DATABASE_URL to .env pointing to your Week 3 Neon database
  4. Push database schema: npx prisma db push
  5. Run development server: npm run dev

The server will be available at http://localhost:3000/api/mcp

API Key Setup

Generate an API key for a user:

npm run issue-key -- user@example.com "my laptop"

Claude Desktop Configuration

Add to your Claude Desktop config:

{
  "mcpServers": {
    "ai-agent-dev-week4": {
      "command": "npx",
      "args": ["ai-agent-dev-week4-mcp-server"],
      "env": {
        "DATABASE_URL": "your_database_url"
      }
    }
  }
}

VS Code Configuration

Copy .vscode/mcp.json into your workspace.

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.