MCP Catalogs
Home

funplay-unity-mcp vs filesystem

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

funplay-unity-mcp
by FunplayAI
filesystem
by modelcontextprotocol
Stars★ 57★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageC#TypeScript
Last committhis monththis month

funplay-unity-mcp · Summary

Advanced MCP server for Unity Editor with 91 built-in tools for automation, scene creation, and AI development.

filesystem · Summary

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

funplay-unity-mcp · Use cases

  • Automating Unity scene creation and script generation through natural language prompts
  • Testing and validation of gameplay mechanics through input simulation and screenshot capture
  • Performance analysis and debugging of Unity projects with automated inspection tools

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

funplay-unity-mcp · Install

  1. Install via UPM (Git URL): In Unity, go to **Window → Package Manager → + → Add package from git URL** and enter https://github.com/FunplayAI/funplay-unity-mcp.git
  2. Start the MCP Server: Use **Menu: Funplay → MCP Server** to start the server on http://127.0.0.1:8765/
  3. Configure Your AI Client: Use the built-in **One-Click MCP Configuration** or manually add:
{
  "mcpServers": {
    "funplay": {
      "type": "http",
      "url": "http://127.0.0.1:8765/"
    }
  }
}

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.