{
  "name": "Agentic Solutions",
  "description": "AI-first consulting platform providing agentic AI solutions, multi-agent orchestration, and enterprise automation services.",
  "url": "https://agentic.solutions/api/mcp",
  "transports": {
    "streamable-http": "https://agentic.solutions/api/mcp/mcp",
    "sse": "https://agentic.solutions/api/mcp/sse"
  },
  "version": "1.0.0",
  "protocol_version": "2025-03-26",
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "auth": {
    "type": "oauth2",
    "authorization_url": "https://agentic.solutions/api/auth/authorize",
    "token_url": "https://agentic.solutions/api/auth/token",
    "scopes": ["read:catalog", "read:cases", "write:proposals"]
  },
  "tools": [
    {
      "name": "get_service_catalog",
      "description": "Retrieve the full catalog of agentic AI services, packages, and pricing tiers.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Filter by service category (e.g., 'consulting', 'development', 'integration')"
          }
        }
      }
    },
    {
      "name": "assess_fit",
      "description": "Evaluate whether a prospect's use case is a good fit for Agentic Solutions services. Returns confidence score and recommended services.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "use_case": {
            "type": "string",
            "description": "Description of the prospective client's use case or challenge"
          },
          "industry": {
            "type": "string",
            "description": "Industry vertical of the prospect"
          },
          "budget_range": {
            "type": "string",
            "description": "Approximate budget range"
          }
        },
        "required": ["use_case"]
      }
    },
    {
      "name": "request_proposal",
      "description": "Submit a request for a custom project proposal based on specified requirements.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "company_name": {
            "type": "string",
            "description": "Name of the requesting company"
          },
          "contact_email": {
            "type": "string",
            "description": "Contact email for proposal delivery"
          },
          "requirements": {
            "type": "string",
            "description": "Detailed project requirements"
          },
          "timeline": {
            "type": "string",
            "description": "Desired project timeline"
          }
        },
        "required": ["company_name", "contact_email", "requirements"]
      }
    },
    {
      "name": "get_case_studies",
      "description": "Retrieve relevant case studies filtered by industry, technology, or outcome metrics.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "industry": {
            "type": "string",
            "description": "Filter by industry vertical"
          },
          "technology": {
            "type": "string",
            "description": "Filter by technology (e.g., 'multi-agent', 'RAG', 'voice-ai')"
          },
          "limit": {
            "type": "number",
            "description": "Maximum number of case studies to return"
          }
        }
      }
    },
    {
      "name": "check_availability",
      "description": "Check current team availability and earliest project start date.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "service_type": {
            "type": "string",
            "description": "Type of service to check availability for"
          },
          "preferred_start": {
            "type": "string",
            "description": "Preferred start date in ISO 8601 format"
          }
        }
      }
    },
    {
      "name": "get_site_health",
      "description": "Return current platform health status, uptime metrics, and system performance indicators.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "include_metrics": {
            "type": "boolean",
            "description": "Whether to include detailed performance metrics"
          }
        }
      }
    }
  ],
  "contact": {
    "email": "hello@agentic.solutions",
    "website": "https://agentic.solutions"
  }
}
