drio
Open app

artifacts-mcp

Source

MCP Server for Artifacts MMO

Catalog onlyCatalog onlySTDIO

Overview

artifacts-mcp is a server repository designed for the Artifacts MMO, providing a framework for managing and running MCP servers.

To use artifacts-mcp, clone the repository from GitHub, configure the server path in the provided command, and run the server using the specified command line arguments.

  • Easy setup for MCP servers for Artifacts MMO - Customizable server commands and arguments - Environment variable support for secure token management
  1. Setting up a dedicated server for Artifacts MMO gameplay.
  2. Managing multiple MCP servers for different game instances.
  3. Customizing server configurations for enhanced gameplay experiences.

Add to your AI client

Use these steps to connect artifacts-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "artifacts-mmo-mcp-djcopley": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "artifacts-mmo-mcp-djcopley": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "artifacts-mmo-mcp-djcopley": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "artifacts-mmo-mcp-djcopley": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "artifacts-mmo-mcp-djcopley": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "artifacts-mmo-mcp-djcopley": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-artifacts-mmo-mcp-djcopley"
      ]
    }
  }
}

FAQ

What is the purpose of artifacts-mcp?

artifacts-mcp is designed to facilitate the setup and management of MCP servers for the Artifacts MMO.

How do I run the server?

You can run the server by executing the command with the specified arguments in your terminal.

Is there a license for using artifacts-mcp?

The repository does not specify a license, so please check the repository for any updates.