Connect (Grok)
This page is an alias of Grok managed MCP. Prefer that URL going forward.
Quick fields
| Field | Value |
|---|---|
| server_url | https://mcp.houseofvibes.app/mcp |
| server_label | house-of-vibes |
| server_description (optional) | Discord-native builder community + travel packages. Streamable HTTP JSON-RPC for Grok managed MCP. |
| authorization | omit for public tools |
Authorization
| Mode | Header | When |
|---|---|---|
| Public / community + travel | none | Default for Grok. Eight public tools without a token. |
| Admin / full catalog | Authorization: Bearer <ADMIN_API_TOKEN> | Optional — hangout live status, scheduled events, bot-proxy ops. Same token as other HoV admin APIs. Never commit or paste into public docs. |
Production fact (web app):
POST /mcpandPOST /api/mcpaccept unauthenticated requests as the public principal. Invalid non-empty Bearer values return 401 (member seam not wired). Grok configs for community tools should not require a secret.
URL aliases
All of these hit the same shared handler:
https://mcp.houseofvibes.app/mcp
https://houseofvibes.app/mcp
https://mcp.houseofvibes.app/api/mcp
https://houseofvibes.app/api/mcpPrefer `https://mcp.houseofvibes.app/mcp`.
Transport rules
- Method:
POSTonly for JSON-RPC. - Content-Type:
application/json - Body: one JSON-RPC object, or a batch array of objects.
- GET: returns 405 — this server does not open a server→client SSE stream (stateless JSON response mode).
- Notifications only (e.g.
notifications/initializedwith noid): HTTP 202, empty body.
Suggested session flow
initialize→ readserverInfoandprotocolVersionnotifications/initialized(notification)tools/list→ cache tool names + schemastools/callas needed
See Examples for curl, xAI SDK, and OpenAI-compatible shapes.
Admin-tier bot MCP (ops)
Full Discord ops tools also live on the Railway bot-service at POST /mcp (not the public docs hostname). That endpoint always requires Authorization: Bearer <ADMIN_API_TOKEN>. See Admin tools.
Do not put Railway internal URLs in end-user Grok configs unless you are an operator with network access to that service.
Full detail: Grok managed MCP · Quickstart · Auth
