MCP Tools

workspace_stats

Get workspace overview, stats, and plan limits.

Get workspace overview including stats, recent activity, and plan usage limits. Call this first to understand what operations are available.

Parameters

ParameterTypeRequiredDescription
workspaceIdstring (UUID)NoWorkspace ID. Uses default workspace if not provided.

Example

Prompt
What's my Coconut workspace status?
Response
{
  "workspace": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "My Workspace",
    "createdAt": "2024-01-15T10: <NUMBER>30</NUMBER>: <NUMBER>00</NUMBER>Z"
  },
  "user": {
    "id": "user_abc123"
  },
  "plan": {
    "name": "max",
    "limits": {
      "creators": { "used": 5, "limit": 25 },
      "ingestionsPerMonth": { "used": 120, "limit": 500 },
      "stash": { "used": 1500, "limit": 10000 },
      "analysisTokensPerMonth": { "used": 50000, "limit": 500000 }
    },
    "mcpAccess": true,
    "periodStart": "2024-03-01",
    "periodEnd": "2024-03-31"
  },
  "stats": {
    "subscriptions": { "total": 5, "active": 4, "paused": 1 },
    "content": { "total": 350 },
    "blocks": { "total": 25, "draft": 20, "published": 5 },
    "digest": { "pending": 45, "saved": 120, "skipped": 85, "later": 15 }
  }
}

Response Fields

workspace

FieldTypeDescription
idstringWorkspace UUID
namestringWorkspace name
createdAtstringISO timestamp

plan.limits

FieldDescription
creatorsNumber of creators you can subscribe to
contentDeliveriesPerMonthContent delivery receipts per entitlement month
storageBytesRetained media storage measured in bytes

Use Cases

  • Check plan limits before subscribing to new creators
  • Monitor usage during billing period
  • Get overview of workspace activity