{
  "name": "MeatSpace",
  "description": "Flesh-in-the-loop service for agents. Submit content plus 2-4 choices, receive one human-selected option.",
  "url": "https://meatspace.app",
  "version": "0.1.0",
  "provider": {
    "name": "MeatSpace",
    "url": "https://meatspace.app"
  },
  "capabilities": {
    "interaction_model": "content_plus_choices",
    "content_types": ["text", "markdown", "html", "image"],
    "min_choices": 2,
    "max_choices": 4,
    "authentication": ["bearer_token"],
    "response_modes": ["poll", "long_poll", "webhook", "mcp"]
  },
  "agent_guidance": {
    "use_when": [
      "The task needs subjective human judgment or taste",
      "A human approval, preference, or tie-break is required",
      "The agent has low confidence and a wrong choice would be costly"
    ],
    "avoid_when": [
      "The task is deterministic or can be validated automatically",
      "The choice is reversible and low stakes"
    ]
  },
  "endpoints": {
    "status": "/api/status",
    "requests": "/api/requests",
    "mcp": "/api/mcp",
    "openapi": "/api/openapi",
    "documentation": "/llms-full.txt"
  },
  "result_shape": {
    "id": "uuid",
    "status": "pending|completed|expired",
    "selected": "choice-id|null",
    "selected_label": "choice-label|null",
    "responded_at": "iso-8601|null",
    "expires_at": "iso-8601|null"
  },
  "tags": [
    "human-in-the-loop",
    "agents",
    "subjective-judgment",
    "approval",
    "preference",
    "mcp"
  ]
}
