{
  "$schema": "https://a2a-protocol.org/schemas/agent-card/v0.2.json",
  "name": "Tuscan Red Investments — Site Agent",
  "version": "1.0.0",
  "description": "Agent-readable interface for Tuscan Red Investments. Exposes company information, service details, and enquiry intake tools to other agents via WebMCP (imperative, browser-based) and via static discovery documents (llms.txt, api-catalog, agent-skills).",
  "publisher": {
    "name": "Tuscan Red Investments",
    "url": "https://tuscanredinvestments.co.uk",
    "contact": "hello@tuscanredinvestments.co.uk"
  },
  "supportedInterfaces": [
    {
      "transport": "webmcp",
      "url": "https://tuscanredinvestments.co.uk/",
      "description": "In-browser Model Context Protocol surface registered via navigator.modelContext.provideContext(). Tools are loaded when the homepage executes."
    },
    {
      "transport": "http",
      "url": "https://tuscanredinvestments.co.uk/llms-full.txt",
      "contentType": "text/plain",
      "description": "Machine-readable company summary for grounding/context."
    },
    {
      "transport": "http",
      "url": "https://tuscanredinvestments.co.uk/",
      "contentType": "text/markdown",
      "description": "Any page can be retrieved as markdown by sending Accept: text/markdown."
    }
  ],
  "capabilities": {
    "streaming": false,
    "multimodal": false,
    "stateful": false,
    "longRunning": false,
    "fileTransfer": false,
    "toolCalling": true,
    "webMcp": true,
    "markdownNegotiation": true
  },
  "skills": [
    {
      "id": "get_company_overview",
      "name": "Get Company Overview",
      "description": "Returns a concise overview of Tuscan Red Investments — services, target markets, and contact information.",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false },
      "tags": ["company", "overview", "real-estate"]
    },
    {
      "id": "list_services",
      "name": "List Services",
      "description": "Returns the detailed list of property services offered by Tuscan Red Investments (acquisition, corporate lettings, diplomatic lettings, management, subletting, advisory).",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false },
      "tags": ["services", "property", "catalog"]
    },
    {
      "id": "navigate_to_section",
      "name": "Navigate To Section",
      "description": "Scrolls the homepage to a named section (about, services, regions, diplomatic, expansion, contact).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "section": {
            "type": "string",
            "enum": ["about", "services", "regions", "diplomatic", "expansion", "contact"]
          }
        },
        "required": ["section"],
        "additionalProperties": false
      },
      "tags": ["navigation", "ui"]
    },
    {
      "id": "start_enquiry",
      "name": "Start Enquiry",
      "description": "Opens the contact form and pre-selects an area of interest. Use when the user wants to contact Tuscan Red Investments about a specific service.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "interest": {
            "type": "string",
            "enum": ["acquisition", "corporate", "diplomatic", "management", "subletting", "advisory"]
          }
        },
        "additionalProperties": false
      },
      "tags": ["contact", "enquiry", "lead"]
    },
    {
      "id": "get_contact_details",
      "name": "Get Contact Details",
      "description": "Returns the primary contact email and location for Tuscan Red Investments.",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false },
      "tags": ["contact"]
    }
  ],
  "discovery": {
    "apiCatalog": "https://tuscanredinvestments.co.uk/.well-known/api-catalog",
    "agentSkills": "https://tuscanredinvestments.co.uk/.well-known/agent-skills/index.json",
    "mcpServerCard": "https://tuscanredinvestments.co.uk/.well-known/mcp/server-card.json"
  }
}
