Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ await tools.execute_menu_item({

## Installation

### Installing via Smithery

To install MCP Unity for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@CoderGamester/mcp-unity):

```bash
npx -y @smithery/cli install @CoderGamester/mcp-unity --client claude
```

### Installing the Unity MCP Server package via Unity Package Manager
1. Open the Unity Package Manager (Window > Package Manager)
2. Click the "+" button in the top-left corner
Expand Down
23 changes: 23 additions & 0 deletions Server/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine

# Create app directory
WORKDIR /app

# Copy package.json and package-lock.json if exists
COPY package*.json ./

# Install dependencies, skipping prepare scripts to avoid unwanted builds
RUN npm install --ignore-scripts

# Copy the rest of the project source
COPY . .

# Build the project
RUN npm run build

# Expose WebSocket port, default 8080
EXPOSE 8080

# Command to run the MCP server
CMD ["node", "build/index.js"]