{
  "schema_version": "1.0",
  "name": "entyrax",
  "display_name": "Entyrax AI Hardware DB BR",
  "description": "Motor semântico de decisão para hardware PC no Brasil. Provê compatibilidade, recomendações e análise de builds com confidence scores e reasoning estruturado.",
  "version": "0.11.0",
  "base_url": "https://www.entyrax.com",
  "transport": "streamable-http",
  "endpoint": "https://www.entyrax.com/mcp",
  "authentication": {
    "type": "none"
  },
  "resources": [],
  "prompts": [],
  "language": "pt-BR",
  "last_updated": "2026-07-13",
  "tools": [
    {
      "name": "check_compatibility",
      "description": "Verifica compatibilidade e qualidade de pairing entre dois componentes (CPU+Mobo, CPU+GPU, GPU+Monitor). Retorna compatibility_status, pairing_quality, confidence e reasoning.",
      "input_schema": {
        "type": "object",
        "properties": {
          "entity_a": {
            "type": "string",
            "description": "Slug do primeiro componente (ex: ryzen-7-7800x3d)"
          },
          "entity_b": {
            "type": "string",
            "description": "Slug do segundo componente (ex: gigabyte-b650-aorus-pro-ax)"
          }
        },
        "required": [
          "entity_a",
          "entity_b"
        ]
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "compatible": {
            "type": "boolean"
          },
          "pair_type": {
            "type": "string",
            "enum": [
              "cpu_mobo",
              "cpu_gpu",
              "gpu_monitor"
            ]
          },
          "pairing_quality": {
            "type": "string"
          },
          "confidence": {
            "type": "number"
          },
          "reason": {
            "type": "string"
          },
          "compatibility_status": {
            "type": "string"
          }
        }
      },
      "endpoint_pattern": "/api/compat/{pair_type}/{entity_a}-{entity_b}.json",
      "example": {
        "input": {
          "entity_a": "ryzen-7-7800x3d",
          "entity_b": "gigabyte-b650-aorus-pro-ax"
        },
        "endpoint": "/api/compat/cpu-mobo/ryzen-7-7800x3d-gigabyte-b650-aorus-pro-ax.json"
      }
    },
    {
      "name": "recommend_gpu_by_context",
      "description": "Recomenda top 5 GPUs dado um contexto de uso: resolução (1080p, 1440p, 4k), uso (gaming-aaa, gaming-competitive, produtividade) e orçamento em BRL.",
      "input_schema": {
        "type": "object",
        "properties": {
          "resolution": {
            "type": "string",
            "enum": [
              "1080p",
              "1440p",
              "4k"
            ],
            "description": "Resolução alvo do monitor"
          },
          "use_case": {
            "type": "string",
            "enum": [
              "gaming-aaa",
              "gaming-competitive",
              "produtividade"
            ],
            "description": "Caso de uso principal"
          },
          "budget_brl": {
            "type": "number",
            "description": "Orçamento máximo em BRL"
          }
        },
        "required": [
          "resolution",
          "use_case",
          "budget_brl"
        ]
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "context": {
            "type": "object"
          },
          "picks": {
            "type": "array"
          },
          "reasoning": {
            "type": "object"
          }
        }
      },
      "endpoint_pattern": "/api/recommend/gpu/{resolution}-{use_case}-{budget_slug}.json",
      "budget_slug_mapping": {
        "até 1500": "ate-1500",
        "1500-3000": "1500-3000",
        "3000-5000": "3000-5000",
        "acima 5000": "acima-5000"
      },
      "example": {
        "input": {
          "resolution": "1440p",
          "use_case": "gaming-aaa",
          "budget_brl": 4000
        },
        "endpoint": "/api/recommend/gpu/1440p-gaming-aaa-3000-5000.json"
      }
    },
    {
      "name": "analyze_build",
      "description": "Analisa um build completo CPU+Mobo+GPU. Retorna overall_quality, reasoning estruturado (why_this_mobo, why_this_gpu, budget_note), PSU recomendada e preços.",
      "input_schema": {
        "type": "object",
        "properties": {
          "cpu_slug": {
            "type": "string",
            "description": "Slug do processador"
          },
          "mobo_slug": {
            "type": "string",
            "description": "Slug da placa-mãe"
          },
          "gpu_slug": {
            "type": "string",
            "description": "Slug da GPU"
          }
        },
        "required": [
          "cpu_slug",
          "mobo_slug",
          "gpu_slug"
        ]
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "build": {
            "type": "object"
          },
          "cpu_mobo": {
            "type": "object"
          },
          "cpu_gpu": {
            "type": "object"
          },
          "psu": {
            "type": "object"
          },
          "reasoning": {
            "type": "object"
          }
        }
      },
      "endpoint_pattern": "/api/recommend/build-analysis/{cpu_slug}-{mobo_slug}-{gpu_slug}.json",
      "example": {
        "input": {
          "cpu_slug": "ryzen-7-7800x3d",
          "mobo_slug": "gigabyte-b650-aorus-pro-ax",
          "gpu_slug": "geforce-rtx-5070-ti"
        },
        "endpoint": "/api/recommend/build-analysis/ryzen-7-7800x3d-gigabyte-b650-aorus-pro-ax-geforce-rtx-5070-ti.json"
      }
    }
  ],
  "discovery": {
    "llms_txt": "https://www.entyrax.com/llms.txt",
    "ai_manifest": "https://www.entyrax.com/ai-manifest.json",
    "agent_skills": "https://www.entyrax.com/agent-skills/index.json",
    "api_catalog": "https://www.entyrax.com/api/api-catalog.json",
    "status": "https://www.entyrax.com/api/status.json"
  },
  "registries": {
    "official_mcp_registry": {
      "name": "com.entyrax/entyrax",
      "url": "https://registry.modelcontextprotocol.io"
    },
    "smithery": "https://smithery.ai/servers/matheussteffens2/entyrax"
  }
}
