← WebMCP Directory

pixly.gg

pixly.gg

live Unverified (seed import) Media & Personal 22 tools imperative implementation

Minecraft server hosting with no subscription — pay for the time your server is online. Java + Bedrock crossplay, 1-click mods, 10 free hours to try, no card.

First seen 2026-08-17 · Last seen 2026-08-17 · Source: webmcp.com

Answer 1 · Act 18 · Transact 3 · Score: Not yet scored

Tool inspector

mc_update_server

act imperative

Update a server's name, instance size, autostart, or world config (MOTD, max players, difficulty, version, mods, etc.). Some fields require a restart to take effect.

Page: /

Input schema

PropertyTypeRequiredDescription
serverId string yes The target server id (ULID), as returned by mc_list_servers.
name string no
config object no
instanceType no
autoStartEnabled boolean no
resetWorld boolean no Confirms a version downgrade by resetting the world in the same save
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "serverId": {
      "type": "string",
      "minLength": 1,
      "description": "The target server id (ULID), as returned by mc_list_servers."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "config": {
      "type": "object",
      "properties": {
        "type": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "VANILLA",
                "FABRIC",
                "FORGE",
                "NEOFORGE",
                "PAPER",
                "PUFFERFISH",
                "PURPUR",
                "LEAF",
                "FOLIA",
                "QUILT"
              ]
            },
            {
              "type": "null"
            }
          ]
        },
        "version": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 20
            },
            {
              "type": "null"
            }
          ]
        },
        "serverImage": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "itzg/minecraft-server:java25-alpine",
                "itzg/minecraft-server:java21-alpine",
                "itzg/minecraft-server:java17",
                "itzg/minecraft-server:java8"
              ]
            },
            {
              "type": "null"
            }
          ]
        },
        "motd": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 2048
            },
            {
              "type": "null"
            }
          ]
        },
        "maxPlayers": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 0,
              "maximum": 1000
            },
            {
              "type": "null"
            }
          ]
        },
        "difficulty": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "peaceful",
                "easy",
                "normal",
                "hard"
              ]
            },
            {
              "type": "null"
            }
          ]
        },
        "onlineMode": {
          "type": "boolean"
        },
        "modrinthProjects": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 8096
            },
            {
              "type": "null"
            }
          ]
        },
        "modrinthModpack": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 1024
            },
            {
              "type": "null"
            }
          ]
        },
        "plugins": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 8096
            },
            {
              "type": "null"
            }
          ]
        },
        "mods": {
          "anyOf": [
            {
              "type": "string",
              "maxLength": 8096
            },
            {
              "type": "null"
            }
          ]
        },
        "whitelist": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "uuid": {
                    "type": "string",
                    "minLength": 1
                  },
                  "name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 16
                  }
                },
                "required": [
                  "name"
                ]
              }
            },
            {
              "type": "null"
            }
          ]
        },
        "ops": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "uuid": {
                    "type": "string",
                    "minLength": 1
                  },
                  "name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 16
                  },
                  "level": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 4
                  },
                  "bypassesPlayerLimit": {
                    "type": "boolean"
                  }
                },
                "required": [
                  "name",
                  "level",
                  "bypassesPlayerLimit"
                ]
              }
            },
            {
              "type": "null"
            }
          ]
        },
        "bannedPlayers": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "uuid": {
                    "type": "string",
                    "minLength": 1
                  },
                  "name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 16
                  },
                  "created": {
                    "type": "string"
                  },
                  "source": {
                    "type": "string"
                  },
                  "expires": {
                    "type": "string"
                  },
                  "reason": {
                    "type": "string"
                  }
                },
                "required": [
                  "uuid",
                  "name",
                  "created",
                  "source",
                  "expires",
                  "reason"
                ]
              }
            },
            {
              "type": "null"
            }
          ]
        },
        "bannedIps": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "ip": {
                    "type": "string",
                    "minLength": 1
                  },
                  "created": {
                    "type": "string"
                  },
                  "source": {
                    "type": "string"
                  },
                  "expires": {
                    "type": "string"
                  },
                  "reason": {
                    "type": "string"
                  }
                },
                "required": [
                  "ip",
                  "created",
                  "source",
                  "expires",
                  "reason"
                ]
              }
            },
            {
              "type": "null"
            }
          ]
        },
        "whitelistEnabled": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "gamemode": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "survival",
                "creative",
                "adventure",
                "spectator"
              ]
            },
            {
              "type": "null"
            }
          ]
        },
        "forceGamemode": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "allowFlight": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "enableCommandBlock": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "spawnProtection": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 0,
              "maximum": 256
            },
            {
              "type": "null"
            }
          ]
        },
        "viewDistance": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 3,
              "maximum": 32
            },
            {
              "type": "null"
            }
          ]
        },
        "simulationDistance": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 3,
              "maximum": 32
            },
            {
              "type": "null"
            }
          ]
        },
        "playerIdleTimeout": {
          "anyOf": [
            {
              "type": "integer",
              "minimum": 0,
              "maximum": 1440
            },
            {
              "type": "null"
            }
          ]
        },
        "pvp": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "hardcore": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "bedrockEnabled": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "voiceChatEnabled": {
          "anyOf": [
            {
              "type": "boolean"
            },
            {
              "type": "null"
            }
          ]
        },
        "voiceChatProvider": {
          "anyOf": [
            {
              "type": "string",
              "enum": [
                "simple-voice-chat",
                "plasmo-voice"
              ]
            },
            {
              "type": "null"
            }
          ]
        }
      }
    },
    "instanceType": {
      "anyOf": [
        {
          "type": "string",
          "enum": [
            "c6g.medium",
            "m6g.medium",
            "c6g.large",
            "m6g.large",
            "r6g.large",
            "c6g.xlarge",
            "m6g.xlarge",
            "r6g.xlarge",
            "m6g.2xlarge",
            "r6g.2xlarge"
          ]
        },
        {
          "type": "null"
        }
      ]
    },
    "autoStartEnabled": {
      "type": "boolean"
    },
    "resetWorld": {
      "description": "Confirms a version downgrade by resetting the world in the same save",
      "type": "boolean"
    }
  },
  "required": [
    "serverId"
  ]
}

Similar websites

quokkapix.com

quokkapix.com

Open the QuokkaPix image editor app. Resize, crop, compress, convert, remove backgrounds, watermark and run batch workflows locally in your browser.

live Unverified Media & Personal Transact tools
14 tools A1 / Act12 / T1 Not yet scored Seen 2026-08-17
quokkapix.get_contract quokkapix.get_state quokkapix.get_result_manifest quokkapix.get_payment_policy quokkapix.list_recipes
Inspect tools
mabbs.github.io

mabbs.github.io

Mayx's personal blog — Chinese-language posts on self-hosting, LLM deployment, browser tech and other side projects, published with Jekyll on GitHub Pages.

live Unverified Media & Personal
10 tools A8 / Act2 / T0 Not yet scored Seen 2026-08-17
blog_list_posts blog_get_post blog_search_posts blog_grep_posts blog_read_post
Inspect tools
beckmann.ai

beckmann.ai

German-language AI trade magazine by Brian Beckmann: daily curated AI news, analyses, how-to guides, and tool comparisons for putting AI to work.

live Unverified Media & Personal
9 tools A5 / Act4 / T0 Not yet scored Seen 2026-08-17
searchPosts askBlogQuestion requestConsultation listLatestPosts getPostContent
Inspect tools
pindufai.com

pindufai.com

AI-composed cinematic devotional music — nasheeds, qawalis, naats, and ghazals — for a global diaspora, with an agent-facing layer for searching the archive, le…

live Unverified Media & Personal
8 tools A4 / Act4 / T0 Not yet scored Seen 2026-08-17
search_catalog read_machine_layer leave_signature leave_voice_note compose_ode
Inspect tools

Related on Influzer