{
  "schema_version": "1.0",
  "name": "UNO Collective",
  "display_name": "UNO Collective MCP Server",
  "description": "MCP (Model Context Protocol) server entrypoint for UNO Collective. Exposes the agency's service catalog, agent-readable resources, and (in v1) tools for quoting and project status. v0 advertises capabilities only; tools are stubbed.",
  "vendor": {
    "name": "UNO Collective",
    "url": "https://www.unocollective.com",
    "contact": "joaquin@orange.sc"
  },
  "homepage": "https://www.unocollective.com/.well-known/mcp.json",
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://www.unocollective.com/api/mcp"
  },
  "authentication": {
    "type": "none",
    "note": "Public discovery; per-project API keys issued on engagement (planned v1)."
  },
  "capabilities": {
    "resources": true,
    "tools": true,
    "prompts": false
  },
  "resources": [
    {
      "uri": "https://www.unocollective.com/llms.txt",
      "name": "llms-txt",
      "description": "Human-readable description of UNO Collective for LLMs.",
      "mimeType": "text/markdown"
    },
    {
      "uri": "https://www.unocollective.com/catalog.json",
      "name": "service-catalog",
      "description": "Structured service catalog: 9 roots, 144 leaves with provenance/confidence, 7 plans with pricing, 26 leaves with evidence links.",
      "mimeType": "application/json"
    },
    {
      "uri": "https://www.unocollective.com/.well-known/content-signals",
      "name": "content-signals",
      "description": "License and AI-use signals (training, search, quotation).",
      "mimeType": "application/json"
    },
    {
      "uri": "https://www.unocollective.com/.well-known/agent-skills/SKILL.md",
      "name": "agent-skill",
      "description": "SKILL.md describing UNO Collective's agent-readable capabilities.",
      "mimeType": "text/markdown"
    }
  ],
  "tools": [
    {
      "name": "discover_services",
      "description": "List UNO's service categories, leaves, and plans with provenance and confidence.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Optional filter by service root slug (e.g. 'seo-aeo', 'meta-google-ads')."
          }
        },
        "additionalProperties": false
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "roots": { "type": "array" },
          "leaves": { "type": "array" },
          "plans": { "type": "array" }
        }
      },
      "status": "planned-v1"
    },
    {
      "name": "request_quote",
      "description": "Submit a brief and receive a recommended plan and price estimate.",
      "inputSchema": {
        "type": "object",
        "required": ["brief"],
        "properties": {
          "brief": {
            "type": "string",
            "description": "Free-form description of the project (objectives, scope, timeline)."
          },
          "budget_usd": { "type": "number" },
          "market": { "type": "string", "description": "ARG | MEX | USA | LATAM" },
          "language": { "type": "string", "default": "es" }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "plan_id": { "type": "string" },
          "price_usd_from": { "type": "number" },
          "price_usd_up_to": { "type": "number" },
          "next_steps": { "type": "array", "items": { "type": "string" } }
        }
      },
      "status": "planned-v1"
    },
    {
      "name": "get_project_status",
      "description": "Retrieve the current status of a project by its project_id.",
      "inputSchema": {
        "type": "object",
        "required": ["project_id"],
        "properties": {
          "project_id": { "type": "string" }
        }
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "project_id": { "type": "string" },
          "stage": { "type": "string" },
          "last_update": { "type": "string" }
        }
      },
      "status": "planned-v1"
    }
  ],
  "prompts": [],
  "links": {
    "llms_txt": "https://www.unocollective.com/llms.txt",
    "catalog": "https://www.unocollective.com/catalog.json",
    "content_signals": "https://www.unocollective.com/.well-known/content-signals",
    "agent_skills": "https://www.unocollective.com/.well-known/agent-skills/SKILL.md",
    "sitemap": "https://www.unocollective.com/sitemap.xml"
  },
  "version": "0.1.0",
  "last_updated": "2026-06-20"
}
