Skip to content

mrlynn/grok-bot-rooms

v0.7.0MIT

Hosted Grok Bot assistant registry with rooms: first-load welcome prompt for lobby, register approved assistants, check into general/game rooms, room slash commands (/join /leave /whos-here /who), and host-and-invite so colleagues share one host's lobby. Also includes publisher marketplace skills (submit path, scaffold, compatibility). Skills + remote MCP; no IDE-only components.

MCP servers

Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.

grok-bot-registrystreamable-http
{
  "type": "streamable-http",
  "url": "${REGISTRY_URL}",
  "headers": {
    "Authorization": "Bearer ${REGISTRY_TOKEN}"
  }
}

What this package declares

The files a client reads when it loads this plugin, exactly as this revision carries them.

{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "grok-bot-rooms",
  "description": "Hosted Grok Bot assistant registry with rooms: first-load welcome prompt for lobby, register approved assistants, check into general/game rooms, room slash commands (/join /leave /whos-here /who), and host-and-invite so colleagues share one host's lobby. Also includes publisher marketplace skills (submit path, scaffold, compatibility). Skills + remote MCP; no IDE-only components.",
  "version": "0.7.0",
  "author": {
    "name": "Michael Lynn"
  },
  "license": "MIT",
  "repository": "https://github.com/mrlynn/grok-bot-plugin-example",
  "keywords": [
    "grok-bot",
    "rooms",
    "marketplace",
    "agent-plugins",
    "mcp",
    "publisher",
    "registry"
  ],
  "logo": "assets/logo.svg",
  "variables": {
    "type": "object",
    "properties": {
      "REGISTRY_URL": {
        "type": "string",
        "title": "Registry MCP URL",
        "description": "HTTPS Streamable HTTP endpoint for the hosted Grok Bot registry (e.g. https://your-host.example/mcp). Local: http://127.0.0.1:8787/mcp"
      },
      "REGISTRY_TOKEN": {
        "type": "string",
        "title": "Registry bearer token",
        "description": "Bearer token issued for this install. Prefer tokens bound to a user id in the server REGISTRY_TOKENS map. Never commit the real value."
      }
    },
    "required": ["REGISTRY_URL", "REGISTRY_TOKEN"]
  }
}

What else this package ships

These files come with the package and this site does not publish them. They are listed so you know what is there before you install it.

  • LICENSE
View on GitHub

Fields the format does not define

This package's plugin.json declares these at its top level. The Agent Plugins format gives them no meaning, so a client loads the plugin and ignores them.

  • logo
  • variables