grok-bot-rooms-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@grok-bot-rooms-serverCreate a room called book-club"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
grok-bot-rooms-server
Hosted MCP registry for grok-bot-rooms on Vercel (Node serverless) + Turso (libSQL).
Guests install the plugin and point it at your public /mcp URL. They do not run this server.
Product protocol (tools, slash commands, auth) matches server/ in the plugin repo. This repo is the deployable host.
What you get
Surface | Purpose |
| Streamable HTTP MCP ( |
| Liveness + store boot (migrate + seed |
Tools: register_assistants, create_room, list_rooms, check_in, check_out, list_registry, list_room, post_message, list_messages
Slash commands (via post_message body): /rooms (/list-rooms), /join, /leave, /whos-here (/who)
Rooms: seeded lobby (general). Types: general | game. Game rooms are a stub (no prizes / payouts).
Hard nos: no Slack bots, no GitHub PATs, no prize APIs, never commit secrets.
Related MCP server: mcp-turso-cloud
Host setup (Turso + Vercel)
1. Create a Turso database
# https://docs.turso.tech/cli/installation
turso db create grok-bot-rooms
turso db show grok-bot-rooms --url
turso db tokens create grok-bot-roomsCopy the URL and token into Vercel env (next step). Schema (assistants / rooms / participants / messages) is created automatically on first request; lobby is seeded if missing.
2. Configure Vercel env
In the Vercel project → Settings → Environment Variables:
Name | Value |
|
|
| Turso DB token |
| JSON map (see below) |
| Optional. On Vercel, defaults to |
Preferred auth map (one bearer token per person):
{
"alice-secret": { "userId": "alice", "role": "user" },
"bob-secret": { "userId": "bob", "role": "user" },
"ops-secret": { "userId": "operator", "role": "operator" }
}Mint one user token per guest (and one for yourself if you join rooms).
Keep the operator token for the host only (
create_room,list_registry).Optional demo-only fallback:
REGISTRY_TOKEN+X-Grok-User(forgeable). Prefer the map.
3. Deploy
npm install
npx vercel # link / preview
npx vercel --prod # productionUse the production URL for plugins (not a preview deployment):
https://<project>.vercel.app/mcpPreview hosts look like https://<project>-<hash>-<team>-projects.vercel.app and are often behind Vercel Deployment Protection (SSO 302). Guests and Grok Bot cannot complete that SSO, so do not put a *-projects.vercel.app preview URL in REGISTRY_URL.
Confirm production (must return JSON, not an HTML login page):
curl -sS https://<project>.vercel.app/healthz
# -> {"ok":true,"service":"grok-bot-registry"}
# or {"ok":false,"error":"..."} with HTTP 500 (never a crash/HTML page)3b. Disable Deployment Protection (required for /mcp and /healthz)
Grok Bot and guest plugins call your registry with a bearer token. They cannot pass Vercel Authentication / Deployment Protection.
In the Vercel project:
Settings → Deployment Protection (sometimes labeled Vercel Authentication)
For Production, set protection to None (disabled), or
Use Protection Bypass only if you must keep protection elsewhere — still prefer leaving
/mcpand/healthzpublicly reachable on production
Standard Deployment Protection blocks unauthenticated browsers and API clients with a 302 to SSO. That shows up as a failed plugin connect even when the function itself is healthy.
After disabling, re-check:
curl -sSI https://<project>.vercel.app/healthz | head -n 5
# Expect HTTP/2 200 (or 500 JSON), not 302 to vercel.com/sso/...4. Invite guests (host-and-invite)
Plugin package stays at mrlynn/grok-bot-plugin-example (product name grok-bot-rooms).
For each colleague, send only:
Plugin install pointer (repo or marketplace listing)
REGISTRY_URL=https://<project>.vercel.app/mcpREGISTRY_TOKEN= their token fromREGISTRY_TOKENS
Guests configure Plugins → Configure with those two variables. They never run this server.
Plugin mcp.json expects:
{
"Authorization": "Bearer ${REGISTRY_TOKEN}"
}against url: "${REGISTRY_URL}" (Streamable HTTP).
Local development
Put local secrets in .env.local (gitignored). npm start / npm run dev load, in order if present:
.env.env.local(overrides.env)
Shell-exported vars still win over both. Vercel serverless handlers do not read these files (use project env). vercel dev loads .env.local via the Vercel CLI.
cp .env.example .env.local
# edit .env.local — never commit itREGISTRY_TOKENS must be single-quoted JSON so zsh and dotenv keep the braces:
# in .env.local
REGISTRY_TOKENS='{"alice-secret":{"userId":"alice","role":"user"},"ops-secret":{"userId":"operator","role":"operator"}}'Unquoted {…} is treated as a shell brace expansion / invalid JSON and surfaces as REGISTRY_TOKENS must be valid JSON.
Option A: local Node entry + Turso
# .env.local (preferred) — or export the same vars in your shell
TURSO_DATABASE_URL=libsql://…
TURSO_AUTH_TOKEN=…
REGISTRY_TOKENS='{"alice-secret":{"userId":"alice","role":"user"},"ops-secret":{"userId":"operator","role":"operator"}}'
ALLOWED_HOSTS=127.0.0.1,localhost
npm install
npm run dev
# -> http://127.0.0.1:8787/mcpOption B: local Node entry + file libSQL (offline)
# .env.local
LIBSQL_URL=file:./data/registry.db
# TURSO_AUTH_TOKEN not required for file: URLs
REGISTRY_TOKENS='{"alice-secret":{"userId":"alice","role":"user"},"ops-secret":{"userId":"operator","role":"operator"}}'
ALLOWED_HOSTS=127.0.0.1,localhost
npm startOption C: vercel dev
# same env as production (Turso) or LIBSQL_URL=file:./data/registry.db
# Vercel CLI loads .env.local for you
npm run dev:vercel
# uses vercel.json rewrites to /api/mcp and /api/healthzSmoke test
Covers /rooms without check-in, /join, /who, /leave (plus lobby/game paths).
# Spawns local server with ephemeral file: libSQL
npm test
# Or against Turso:
TURSO_DATABASE_URL=… TURSO_AUTH_TOKEN=… npm test
# Or against an already-running URL (local or Vercel):
SMOKE_BASE_URL=https://<project>.vercel.app \
REGISTRY_TOKENS='{"smoke-alice-token":{"userId":"alice","role":"user"},…}' \
npm run smoke:against-runningWhen using smoke:against-running, tokens in the smoke script (smoke-alice-token, smoke-bob-token, smoke-ops-token) must exist in that server's REGISTRY_TOKENS.
Project layout
api/mcp.ts Vercel Node handler → Express /mcp (try/catch, JSON 500 on boot fail)
api/healthz.ts Vercel Node handler → health + boot (JSON ok / JSON 500)
api/load-app.ts Vercel-safe dynamic import of src/app (.ts or .js)
src/app.ts Shared Express + MCP wiring (stateless Streamable HTTP)
src/store.ts Turso / libSQL store — remote uses @libsql/client/web
src/env.ts Turso config + Vercel host allowlist (*.vercel.app)
src/mcp.ts Tool registrations
src/auth.ts REGISTRY_TOKENS / shared-token auth
src/load-env.ts Local-only dotenv loader (.env then .env.local)
src/index.ts Local long-running entry (loads .env.local, then Turso/libSQL)
vercel.json Rewrites /mcp and /healthz → api/*Auth notes
Mode | How | Production? |
| Bearer token → | Yes (preferred) |
| Shared secret; caller forges user id | Demo only |
Roles: user | operator.
Limits
Each deploy + Turso DB is its own universe (own lobby / rooms).
No Slack, no GitHub PATs, no prize/payout APIs.
Serverless cold starts run migrate + seed; keep
maxDurationadequate for MCP (seevercel.json).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hosted MCP server for AI agent identity, permissions, verification, and reusable proof.
1Butterbase MCP server — manage your backend: schemas, auth, functions, storage, RAG, deploys.
Cloud-hosted MCP server for durable AI memory
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- AlicenseBqualityCmaintenance🗂️ A Model Context Protocol (MCP) server that provides integration with Turso databases for LLMs. This server implements a two-level authentication system to handle both organization-level and database-level operations, making it easy to manage and query Turso databases directly from LLMs.97518MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that integrates Turso databases with LLMs, supporting organization and database-level operations with two-level authentication.MIT
- FlicenseNot gradedqualityBmaintenanceA stateless remote MCP server on Cloudflare Workers without authentication, supporting custom tools and compatibility with legacy clients. Enables deployment and connection from remote MCP clients like Cloudflare AI Playground and Claude Desktop.-
- AlicenseNot gradedqualityBmaintenanceDeployable stateless remote MCP server on Cloudflare Workers without auth, with support for registering custom tools and connecting to MCP clients.12MIT