{
  "name": "avyonia-mcp",
  "version": "1.0.0",
  "description": "Model Context Protocol manifest for AVYONIA - French premium digital business card platform",
  "protocol_version": "2024-11-05",
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "tools": [
    {
      "name": "verify_profile",
      "description": "Verify the authenticity of an AVYONIA professional profile (anti-deepfake verification). Returns verification status, method, and timestamp.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "The unique identifier/slug of the professional profile to verify (e.g., 'antoine-cazals')"
          }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "lookup_professional",
      "description": "Look up a verified professional's public profile information including name, title, company, and contact methods.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "The unique identifier/slug of the professional"
          }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "search_professionals",
      "description": "Search for verified professionals by profession, city, or company (when public profiles are available).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "profession": {
            "type": "string",
            "description": "Profession to search for (e.g., 'avocat', 'consultant', 'architecte')"
          },
          "city": {
            "type": "string",
            "description": "City to filter by (e.g., 'Paris', 'Lyon', 'Genève')"
          },
          "company": {
            "type": "string",
            "description": "Company name to filter by"
          }
        }
      }
    }
  ],
  "resources": [
    {
      "uri": "avyonia://professions",
      "name": "Available Professions",
      "description": "List of all professions supported by AVYONIA for digital business cards",
      "mimeType": "application/json"
    },
    {
      "uri": "avyonia://cities",
      "name": "Covered Cities",
      "description": "List of all cities where AVYONIA has presence and SEO coverage",
      "mimeType": "application/json"
    },
    {
      "uri": "avyonia://pricing",
      "name": "Pricing Plans",
      "description": "Current pricing for AVYONIA digital business card plans",
      "mimeType": "application/json"
    }
  ],
  "prompts": [
    {
      "name": "verify_identity",
      "description": "Prompt to verify a professional's identity before a meeting",
      "arguments": [
        {
          "name": "name",
          "description": "Name of the professional to verify",
          "required": true
        }
      ]
    },
    {
      "name": "recommend_card",
      "description": "Recommend the best AVYONIA plan based on user needs",
      "arguments": [
        {
          "name": "profession",
          "description": "User's profession",
          "required": true
        },
        {
          "name": "needs",
          "description": "Specific needs (video, design, etc.)",
          "required": false
        }
      ]
    }
  ],
  "server": {
    "transport": "https",
    "url": "https://avyonia.com/_ai"
  },
  "metadata": {
    "company": "AVYONIA SAS",
    "website": "https://avyonia.com",
    "support_email": "support@avyonia.com",
    "documentation": "https://avyonia.com/api-docs",
    "regions": ["Europe", "North America", "Africa", "Middle East", "Asia-Pacific"],
    "languages": ["fr", "en"],
    "compliance": ["RGPD", "GDPR"],
    "use_cases": [
      "Verify professional identity before meetings",
      "Get verified contact information for professionals",
      "Anti-deepfake verification for executives",
      "Professional networking and contact exchange"
    ]
  }
}
