← 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_create_server

act imperative

Create a new Minecraft server. `region` must be an awsRegion id from mc_list_regions. Per-account server limits and wallet balance are enforced server-side; a 402/403 result means the action was blocked, not that it failed transiently.

Page: /

Input schema

PropertyTypeRequiredDescription
name string yes
region string yes
config object no
instanceType string no
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "region": {
      "type": "string",
      "minLength": 1
    },
    "config": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "VANILLA",
            "FABRIC",
            "FORGE",
            "NEOFORGE",
            "PAPER",
            "PUFFERFISH",
            "PURPUR",
            "LEAF",
            "FOLIA",
            "QUILT"
          ]
        },
        "version": {
          "type": "string",
          "maxLength": 20
        },
        "serverImage": {
          "type": "string",
          "enum": [
            "itzg/minecraft-server:java25-alpine",
            "itzg/minecraft-server:java21-alpine",
            "itzg/minecraft-server:java17",
            "itzg/minecraft-server:java8"
          ]
        },
        "motd": {
          "type": "string",
          "maxLength": 2048
        },
        "maxPlayers": {
          "type": "integer",
          "minimum": 0,
          "maximum": 1000
        },
        "difficulty": {
          "type": "string",
          "enum": [
            "peaceful",
            "easy",
            "normal",
            "hard"
          ]
        },
        "onlineMode": {
          "default": true,
          "type": "boolean"
        },
        "modrinthProjects": {
          "type": "string",
          "maxLength": 8096
        },
        "modrinthModpack": {
          "type": "string",
          "maxLength": 1024
        },
        "plugins": {
          "type": "string",
          "maxLength": 8096
        },
        "mods": {
          "type": "string",
          "maxLength": 8096
        },
        "whitelist": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "uuid": {
                "type": "string",
                "minLength": 1
              },
              "name": {
                "type": "string",
                "minLength": 1,
                "maxLength": 16
              }
            },
            "required": [
              "name"
            ]
          }
        },
        "ops": {
          "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"
            ]
          }
        },
        "bannedPlayers": {
          "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"
            ]
          }
        },
        "bannedIps": {
          "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"
            ]
          }
        },
        "whitelistEnabled": {
          "type": "boolean"
        },
        "gamemode": {
          "type": "string",
          "enum": [
            "survival",
            "creative",
            "adventure",
            "spectator"
          ]
        },
        "forceGamemode": {
          "type": "boolean"
        },
        "allowFlight": {
          "type": "boolean"
        },
        "enableCommandBlock": {
          "type": "boolean"
        },
        "spawnProtection": {
          "type": "integer",
          "minimum": 0,
          "maximum": 256
        },
        "viewDistance": {
          "type": "integer",
          "minimum": 3,
          "maximum": 32
        },
        "simulationDistance": {
          "type": "integer",
          "minimum": 3,
          "maximum": 32
        },
        "playerIdleTimeout": {
          "type": "integer",
          "minimum": 0,
          "maximum": 1440
        },
        "pvp": {
          "type": "boolean"
        },
        "hardcore": {
          "type": "boolean"
        },
        "bedrockEnabled": {
          "type": "boolean"
        },
        "voiceChatEnabled": {
          "type": "boolean"
        },
        "voiceChatProvider": {
          "type": "string",
          "enum": [
            "simple-voice-chat",
            "plasmo-voice"
          ]
        },
        "reviewNotice": {
          "type": "string",
          "maxLength": 2048
        }
      }
    },
    "instanceType": {
      "type": "string",
      "enum": [
        "c6g.medium",
        "m6g.medium",
        "c6g.large",
        "m6g.large",
        "r6g.large",
        "c6g.xlarge",
        "m6g.xlarge",
        "r6g.xlarge",
        "m6g.2xlarge",
        "r6g.2xlarge"
      ]
    }
  },
  "required": [
    "name",
    "region"
  ]
}

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