← WebMCP Directory

fieldwork-beat-machine.openai.chatgpt.site

fieldwork-beat-machine.openai.chatgpt.site

demo Unverified (seed import) Media & Personal 26 tools imperative implementation

A tactile 12-voice beat machine with classic drum-machine grooves, deep synths, keyboard and touch pads, WebMCP controls, and stereo WAV export.

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

Answer 2 · Act 24 · Transact 0 · Score: Not yet scored

Tool inspector

load_project

act imperative

Validate and atomically replace the current local project with a Fieldwork project document. Stops playback and recording, preserves an undo step, and autosaves locally. Invalid documents leave the current project unchanged.

Input schema

PropertyTypeRequiredDescription
document object yes
Raw JSON schema
{
  "type": "object",
  "properties": {
    "document": {
      "type": "object",
      "properties": {
        "format": {
          "type": "string",
          "const": "fieldwork-project"
        },
        "version": {
          "type": "integer",
          "const": 1
        },
        "project": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "minLength": 1,
              "maxLength": 64
            },
            "kit": {
              "type": "string",
              "enum": [
                "808-night",
                "909-warehouse",
                "linn-pop",
                "sp-dust",
                "mpc-swing",
                "acid-cell",
                "electro-break",
                "dub-orbit",
                "minimal-12"
              ]
            },
            "tempo": {
              "type": "integer",
              "minimum": 45,
              "maximum": 220
            },
            "swing": {
              "type": "number",
              "minimum": 0,
              "maximum": 0.45
            },
            "tone": {
              "type": "number",
              "minimum": 0,
              "maximum": 1
            },
            "space": {
              "type": "number",
              "minimum": 0,
              "maximum": 1
            },
            "master": {
              "type": "number",
              "minimum": 0,
              "maximum": 1
            },
            "humanize": {
              "type": "number",
              "minimum": 0,
              "maximum": 1
            },
            "bars": {
              "type": "integer",
              "minimum": 1,
              "maximum": 32
            },
            "keyRoot": {
              "type": "integer",
              "minimum": 0,
              "maximum": 11
            },
            "scale": {
              "type": "string",
              "enum": [
                "minor",
                "major",
                "dorian",
                "pentatonic",
                "chromatic"
              ]
            },
            "activeSlot": {
              "type": "integer",
              "minimum": 1,
              "maximum": 6
            },
            "padBank": {
              "type": "string",
              "enum": [
                "all",
                "drum",
                "low",
                "synth"
              ]
            },
            "pattern": {
              "type": "object",
              "properties": {
                "kick": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "snare": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "clap": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "hatClosed": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "hatOpen": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "perc": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "sub": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "bass": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "chord": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "lead": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "pluck": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                },
                "fx": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  }
                }
              },
              "required": [
                "kick",
                "snare",
                "clap",
                "hatClosed",
                "hatOpen",
                "perc",
                "sub",
                "bass",
                "chord",
                "lead",
                "pluck",
                "fx"
              ],
              "additionalProperties": false
            },
            "notes": {
              "type": "object",
              "properties": {
                "kick": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "snare": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "clap": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "hatClosed": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "hatOpen": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "perc": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "sub": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "bass": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "chord": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "lead": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "pluck": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                },
                "fx": {
                  "type": "array",
                  "minItems": 16,
                  "maxItems": 16,
                  "items": {
                    "type": [
                      "integer",
                      "null"
                    ],
                    "minimum": 0,
                    "maximum": 127
                  }
                }
              },
              "required": [
                "kick",
                "snare",
                "clap",
                "hatClosed",
                "hatOpen",
                "perc",
                "sub",
                "bass",
                "chord",
                "lead",
                "pluck",
                "fx"
              ],
              "additionalProperties": false
            },
            "muted": {
              "type": "object",
              "properties": {
                "kick": {
                  "type": "boolean"
                },
                "snare": {
                  "type": "boolean"
                },
                "clap": {
                  "type": "boolean"
                },
                "hatClosed": {
                  "type": "boolean"
                },
                "hatOpen": {
                  "type": "boolean"
                },
                "perc": {
                  "type": "boolean"
                },
                "sub": {
                  "type": "boolean"
                },
                "bass": {
                  "type": "boolean"
                },
                "chord": {
                  "type": "boolean"
                },
                "lead": {
                  "type": "boolean"
                },
                "pluck": {
                  "type": "boolean"
                },
                "fx": {
                  "type": "boolean"
                }
              },
              "required": [],
              "additionalProperties": false
            },
            "instrumentSounds": {
              "type": "array",
              "minItems": 6,
              "maxItems": 6,
              "items": {
                "type": "string",
                "enum": [
                  "neon-lead",
                  "mono-arc",
                  "laser-fm",
                  "pixel-pulse",
                  "velvet-pad",
                  "prism-chord",
                  "brass-stack",
                  "horizon-strings",
                  "glass-pluck",
                  "felt-keys",
                  "crystal-bell",
                  "rubber-mallet",
                  "acid-wire",
                  "reese-engine",
                  "rubber-bass",
                  "buzz-cell",
                  "deep-sub",
                  "808-glide",
                  "hollow-sub",
                  "quake",
                  "ion-noise",
                  "radio-ghost",
                  "solar-wash",
                  "bit-spray"
                ]
              }
            },
            "instrumentTones": {
              "type": "array",
              "minItems": 6,
              "maxItems": 6,
              "items": {
                "type": "object",
                "properties": {
                  "attack": {
                    "type": "number",
                    "minimum": 0.001,
                    "maximum": 2
                  },
                  "decay": {
                    "type": "number",
                    "minimum": 0.01,
                    "maximum": 3
                  },
                  "sustain": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "release": {
                    "type": "number",
                    "minimum": 0.01,
                    "maximum": 4
                  },
                  "cutoff": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "resonance": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "drive": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "motion": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "width": {
                    "type": "number",
                    "minimum": 0,
                    "maximum": 1
                  },
                  "octave": {
                    "type": "integer",
                    "minimum": -2,
                    "maximum": 2
                  },
                  "wave": {
                    "type": "string",
                    "enum": [
                      "sine",
                      "triangle",
                      "sawtooth",
                      "square"
                    ]
                  }
                },
                "required": [
                  "attack",
                  "decay",
                  "sustain",
                  "release",
                  "cutoff",
                  "resonance",
                  "drive",
                  "motion",
                  "width",
                  "octave",
                  "wave"
                ],
                "additionalProperties": false
              }
            },
            "instrumentOrder": {
              "type": "array",
              "minItems": 6,
              "maxItems": 6,
              "items": {
                "type": "integer",
                "minimum": 1,
                "maximum": 6
              },
              "uniqueItems": true
            }
          },
          "required": [
            "name",
            "kit",
            "tempo",
            "swing",
            "tone",
            "space",
            "master",
            "humanize",
            "bars",
            "keyRoot",
            "scale",
            "activeSlot",
            "padBank",
            "pattern",
            "notes",
            "muted",
            "instrumentSounds",
            "instrumentTones",
            "instrumentOrder"
          ],
          "additionalProperties": false
        }
      },
      "required": [
        "format",
        "version",
        "project"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "document"
  ],
  "additionalProperties": false
}

Similar websites

webroom.openai.chatgpt.site

webroom.openai.chatgpt.site

A private, browser-based photo editor with precise manual controls and agent-ready WebMCP tools.

demo Unverified Media & Personal
28 tools A4 / Act24 / T0 Not yet scored Seen 2026-08-27
get_document_info get_edit_state get_edit_history get_image_preview open_image_from_url
Inspect tools
pixly.gg

pixly.gg

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.

live Unverified Media & Personal Transact tools
22 tools A1 / Act18 / T3 Not yet scored Seen 2026-08-27
mc_list_servers mc_get_server mc_create_server mc_update_server mc_server_action
Inspect tools
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-27
quokkapix.get_contract quokkapix.get_state quokkapix.get_result_manifest quokkapix.get_payment_policy quokkapix.list_recipes
Inspect tools
paperie-webmcp-greeting-cards.openai.chatgpt.site

paperie-webmcp-greeting-cards.openai.chatgpt.site

A WebMCP greeting-card studio. Start with a blank canvas, add agent-created artwork and messages, preview every print size and envelope, and approve your final …

demo Unverified Media & Personal
13 tools A2 / Act11 / T0 Not yet scored Seen 2026-08-27
get_card_state set_recipient_context set_card_message set_card_size apply_generated_artwork
Inspect tools

Related on Influzer