{
  "id": "https://www.drvikramsingh.ai/",
  "name": "drvikramsingh.ai",
  "description": "AI agent for Dr. Vikram Singh's personal site — exposes articles, profile data, and site search. Dr. Vikram Singh is Head of AI at Mahindra Group, IIT Madras PhD, and enterprise AI thought leader.",
  "version": "1.0.0",
  "provider": {
    "name": "Dr. Vikram Singh",
    "url": "https://www.drvikramsingh.ai/",
    "email": "hello@drvikramsingh.ai"
  },
  "endpoints": ["https://www.drvikramsingh.ai/mcp"],
  "supportedInterfaces": [
    {
      "type": "mcp",
      "version": "2024-11-05",
      "url": "https://www.drvikramsingh.ai/mcp",
      "transport": "http+json",
      "supportsStreaming": false,
      "supportsPushNotifications": false
    }
  ],
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "extendedAgentCard": false,
    "multiTurn": false,
    "contextManagement": false
  },
  "skills": [
    {
      "id": "get_articles",
      "name": "Get Articles",
      "description": "Returns the full list of published articles by Dr. Vikram Singh with title, date, section, and URL.",
      "acceptedInputTypes": ["application/json"],
      "producedOutputTypes": ["application/json"]
    },
    {
      "id": "get_article",
      "name": "Get Article",
      "description": "Returns metadata for a specific article given its slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": { "type": "string", "description": "Article slug, e.g. cutting-juniors-to-buy-gpus-july-2026" }
        },
        "required": ["slug"]
      },
      "acceptedInputTypes": ["application/json"],
      "producedOutputTypes": ["application/json"]
    },
    {
      "id": "get_profile",
      "name": "Get Profile",
      "description": "Returns Dr. Vikram Singh's professional profile: current role, credentials, awards, and flagship AI projects.",
      "acceptedInputTypes": ["application/json"],
      "producedOutputTypes": ["application/json"]
    },
    {
      "id": "search_articles",
      "name": "Search Articles",
      "description": "Full-text search across article titles and sections on drvikramsingh.ai.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": { "type": "string", "description": "Search query" }
        },
        "required": ["query"]
      },
      "acceptedInputTypes": ["application/json"],
      "producedOutputTypes": ["application/json"]
    }
  ],
  "securitySchemes": [
    {
      "type": "http",
      "scheme": "bearer",
      "description": "No authentication required. This agent is publicly accessible."
    }
  ],
  "security": []
}
