{
  "$schema": "https://modelcontextprotocol.io/schema/manifest.json",
  "name": "guarania-mcp",
  "displayName": "GuaranIA AI & Automation Services",
  "description": "Model Context Protocol (MCP) server providing AI agents with direct access to discover services, evaluate automation feasibility, and interact with GuaranIA in Paraguay.",
  "version": "1.0.0",
  "homepage": "https://guarania.com.py",
  "tools": [
    {
      "name": "get_services",
      "description": "Retrieve the complete catalog of AI consulting, custom LLM agents, RPA automation, web development, and data analytics services offered by GuaranIA.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": ["all", "consulting", "ai-agents", "rpa", "web-development", "data-analytics"],
            "description": "Optional category filter"
          }
        },
        "required": []
      }
    },
    {
      "name": "get_company_info",
      "description": "Retrieve verified company data for GuaranIA: legal registration, Asunción headquarters address, contact points, phone (+595 982 672619), and operational scope in Paraguay and Latin America.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "evaluate_automation",
      "description": "Analyze a business workflow or operational bottleneck and compute feasibility score, recommended architecture (RPA vs. Agentic LLM), and estimated time savings.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "process_description": {
            "type": "string",
            "description": "Detailed description of the manual or repetitive business workflow"
          },
          "monthly_volume": {
            "type": "integer",
            "description": "Approximate monthly transaction or document count"
          },
          "current_tools": {
            "type": "array",
            "items": { "type": "string" },
            "description": "Software, databases, or ERPs currently involved (e.g. SAP, Excel, WhatsApp, Outlook)"
          }
        },
        "required": ["process_description"]
      }
    },
    {
      "name": "submit_inquiry",
      "description": "Submit a commercial or technical project inquiry to GuaranIA engineering team in Asunción.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name or contact person"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Corporate email address"
          },
          "company": {
            "type": "string",
            "description": "Company name"
          },
          "service_interest": {
            "type": "string",
            "enum": ["ai-agents", "rpa-automation", "web-development", "saas-products", "data-analytics", "consulting"],
            "description": "Selected service interest"
          },
          "message": {
            "type": "string",
            "description": "Project scope, challenge, or consultation details"
          }
        },
        "required": ["name", "email", "message"]
      }
    }
  ],
  "transports": [
    {
      "type": "http",
      "url": "https://guarania.com.py/api/v1/mcp"
    }
  ]
}
