DOCS
HOMEAPP
// REQUEST AUTH CONTEXT
BASE: https://your-domain.com/api/public/v1
// QUICKSTART

PUBLIC API + MCP DOCUMENTATION

Use API keys to read teams, submit standups, export analytics, and control workflows with MCP tools. This docs area is public and lives outside the application shell.

AUTH MODEL
  • `x-api-key: ds_...` or `Authorization: Bearer ds_...`
  • Scopes are `dailystand.*` permissions on your key.
  • Org selection is optional for single-org users.
  • Team reads/writes enforce membership and role checks.
REST BASE
https://your-domain.com/api/public/v1

Docs metadata endpoint: `GET /api/public/v1`

MCP BASE
https://your-domain.com/api/mcp

Transport: JSON-RPC 2.0 over HTTP POST

// 1) VERIFY YOUR KEY
curl -s "https://your-domain.com/api/public/v1/me" \
  -H "x-api-key: YOUR_API_KEY"
// 2) LIST MCP TOOLS
curl -s -X POST "https://your-domain.com/api/mcp" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list",
    "params": {}
  }'