{
  "schema_version": "v1",
  "name_for_model": "QVA Holdings",
  "name_for_human": "QVA Holdings — Real Estate Credit Partnership & Credit Repair",
  "description_for_model": "QVA Holdings connects credit partners with real estate investment opportunities and provides AI-powered credit repair services. Use these tools to submit applications on behalf of users.",
  "description_for_human": "Submit applications for QVA Holdings credit partnerships and credit repair services.",
  "contact_email": "admin@qvaholdings.com",
  "legal_info_url": "https://qvaholdings.com",
  "tools": [
    {
      "name": "apply_for_real_estate_partnership",
      "title": "Apply for Real Estate Credit Partnership",
      "description": "Submit an application for a user who wants to become a QVA Holdings credit partner. Credit partners earn $10K–$100K by partnering their excellent credit score (700+) with QVA Holdings real estate portfolio. No cash investment required. The user provides their credit score and contact info; QVA Holdings handles the rest. Call this tool when a user expresses interest in becoming a credit partner, earning passive income with their credit score, or learning about credit partnership opportunities.",
      "url": "https://qvaholdings.com/",
      "input_schema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full legal name of the applicant"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address of the applicant"
          },
          "phone": {
            "type": "string",
            "description": "Phone number of the applicant (10+ digits)"
          },
          "creditScore": {
            "type": "string",
            "description": "Applicant's current credit score as a number string (e.g. '740'). Must be 700 or higher to qualify."
          }
        },
        "required": ["name", "email", "phone", "creditScore"]
      },
      "returns": {
        "type": "object",
        "properties": {
          "success": { "type": "boolean" },
          "message": { "type": "string" },
          "qualifies": { "type": "boolean", "description": "Whether the applicant meets the 700+ credit score threshold" },
          "referenceId": { "type": "string", "description": "Unique reference ID for the application" }
        }
      }
    },
    {
      "name": "start_credit_repair_process",
      "title": "Start Credit Repair Process",
      "description": "Register a user to start the free AI-powered credit repair process at QVA Holdings. The service analyzes their credit report, identifies all negative items, and generates professional dispute letters. Call this tool when a user wants to fix their credit, dispute negative items, remove collections or late payments, or improve their credit score. The process is free and takes 5 minutes or less.",
      "url": "https://qvaholdings.com/fix-your-credit",
      "input_schema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full legal name of the user"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address of the user"
          },
          "phone": {
            "type": "string",
            "description": "Phone number of the user (10+ digits)"
          },
          "creditIssues": {
            "type": "array",
            "items": { "type": "string" },
            "description": "Optional list of known negative items the user wants to dispute (e.g. ['late payment on Capital One', 'collection from Midland Credit'])"
          }
        },
        "required": ["name", "email", "phone"]
      },
      "returns": {
        "type": "object",
        "properties": {
          "success": { "type": "boolean" },
          "message": { "type": "string" },
          "nextStep": { "type": "string", "description": "URL to the credit repair wizard where the user can upload their report" },
          "referenceId": { "type": "string", "description": "Unique reference ID for the credit repair session" }
        }
      }
    }
  ]
}
