ZenBinary DeploySuite

PlugPlayground v3
ScriptSpring for PlugPlayground

Developer portal

Scaffold custom nodes, package connector packs, route AI previews through BrainyBinary, and test Responses/MCP-aware agent configs from the web surface.

CLI quick start

pnpm scaffold:connector ./my-connector-pack
pnpm scaffold:node ./my-custom-node
pnpm package:connector ./my-connector-pack

The dev CLI generates starter manifests, custom-node modules, and pack archives for upload into the connector registry.

API endpoints

http://localhost:4000/api/flows
http://localhost:4000/api/connectors
http://localhost:4000/api/runs
http://localhost:4000/api/memory/search
http://localhost:4000/api/docdome/artifacts

Use workspace API keys or session cookies. Internal workers call the internal API with the service token.

BrainyBinary playground

No preview output yet.

Connector manifest example

{
  "connectors": [
    {
      "appId": "example.crm",
      "displayName": "Example CRM",
      "summary": "External CRM imported via connector pack",
      "actions": [
        {
          "key": "create_contact",
          "title": "Create contact",
          "summary": "Create a CRM contact",
          "inputSchema": {
            "type": "object",
            "required": ["email"],
            "properties": {
              "email": { "type": "string" },
              "firstName": { "type": "string" },
              "lastName": { "type": "string" }
            }
          },
          "transport": {
            "type": "mcp",
            "serverRef": "example.crm",
            "toolName": "example.crm.create_contact",
            "fallback": {
              "type": "http",
              "method": "POST",
              "url": "https://api.example.com/contacts"
            }
          }
        }
      ]
    }
  ]
}