{
  "name": "Scixa AI Agent",
  "description": "Scientific research platform agent for searching, reading, and discovering scientific articles, publications, and research content",
  "version": "1.0.0",
  "provider": {
    "name": "Scixa",
    "url": "https://scixa.com",
    "support": "https://scixa.com/support"
  },
  "skills": [
    {
      "id": "skill-search-articles",
      "name": "search-articles",
      "description": "Search for scientific articles and content",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search query"
          },
          "category": {
            "type": "string",
            "enum": ["all", "science", "technology", "health", "business", "ai", "engineering", "medicine"],
            "description": "Filter by category"
          },
          "type": {
            "type": "string",
            "enum": ["all", "blog", "scientific", "publication", "tutorial", "case_study"],
            "description": "Filter by content type"
          },
          "limit": {
            "type": "integer",
            "default": 10,
            "minimum": 1,
            "maximum": 50
          }
        },
        "required": ["query"]
      },
      "endpoint": {
        "url": "https://scixa.com/search",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-trending",
      "name": "view-trending",
      "description": "View trending articles",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/trending",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-featured",
      "name": "view-featured",
      "description": "View featured articles",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/featured",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-categories",
      "name": "view-categories",
      "description": "Browse articles by category",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": ["science", "technology", "health", "business", "ai", "engineering", "medicine"],
            "description": "Category name"
          }
        }
      },
      "endpoint": {
        "url": "https://scixa.com/categories",
        "method": "GET"
      }
    },
    {
      "id": "skill-read-article",
      "name": "read-article",
      "description": "Read a specific article by slug or ID",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "Article slug (URL-friendly title)"
          },
          "id": {
            "type": "integer",
            "description": "Article ID"
          }
        }
      },
      "endpoint": {
        "url": "https://scixa.com/article",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-blogs",
      "name": "view-blogs",
      "description": "View blog posts",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/blogs",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-scientific",
      "name": "view-scientific",
      "description": "View scientific articles",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/scientific",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-publications",
      "name": "view-publications",
      "description": "View academic publications",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/publications",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-tutorials",
      "name": "view-tutorials",
      "description": "View tutorials",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com/tutorials",
        "method": "GET"
      }
    },
    {
      "id": "skill-view-authors",
      "name": "view-authors",
      "description": "View featured authors",
      "inputSchema": {
        "type": "object",
        "properties": {
          "author_id": {
            "type": "integer",
            "description": "Author ID (optional)"
          }
        }
      },
      "endpoint": {
        "url": "https://scixa.com/authors",
        "method": "GET"
      }
    },
    {
      "id": "skill-go-home",
      "name": "go-home",
      "description": "Go to homepage",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": {
        "url": "https://scixa.com",
        "method": "GET"
      }
    }
  ],
  "supportedInterfaces": [
    {
      "type": "A2A",
      "url": "https://scixa.com/.well-known/agent-card.json"
    },
    {
      "type": "MCP",
      "url": "https://scixa.com/.well-known/mcp/server-card.json"
    }
  ],
  "capabilities": {
    "actions": [
      {
        "name": "search",
        "description": "Search for scientific articles and content",
        "inputSchema": {
          "type": "object",
          "properties": {
            "query": {
              "type": "string",
              "description": "Search query"
            },
            "category": {
              "type": "string",
              "enum": ["all", "science", "technology", "health", "business", "ai", "engineering", "medicine"],
              "description": "Filter by category"
            },
            "type": {
              "type": "string",
              "enum": ["all", "blog", "scientific", "publication", "tutorial", "case_study"],
              "description": "Filter by content type"
            },
            "limit": {
              "type": "integer",
              "default": 10,
              "minimum": 1,
              "maximum": 50
            }
          },
          "required": ["query"]
        },
        "endpoint": {
          "url": "https://scixa.com/search",
          "method": "GET"
        }
      },
      {
        "name": "view-trending",
        "description": "View trending articles",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/trending",
          "method": "GET"
        }
      },
      {
        "name": "view-featured",
        "description": "View featured articles",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/featured",
          "method": "GET"
        }
      },
      {
        "name": "view-categories",
        "description": "Browse articles by category",
        "inputSchema": {
          "type": "object",
          "properties": {
            "category": {
              "type": "string",
              "enum": ["science", "technology", "health", "business", "ai", "engineering", "medicine"],
              "description": "Category name"
            }
          }
        },
        "endpoint": {
          "url": "https://scixa.com/categories",
          "method": "GET"
        }
      },
      {
        "name": "read-article",
        "description": "Read a specific article by slug or ID",
        "inputSchema": {
          "type": "object",
          "properties": {
            "slug": {
              "type": "string",
              "description": "Article slug (URL-friendly title)"
            },
            "id": {
              "type": "integer",
              "description": "Article ID"
            }
          }
        },
        "endpoint": {
          "url": "https://scixa.com/article",
          "method": "GET"
        }
      },
      {
        "name": "view-blogs",
        "description": "View blog posts",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/blogs",
          "method": "GET"
        }
      },
      {
        "name": "view-scientific",
        "description": "View scientific articles",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/scientific",
          "method": "GET"
        }
      },
      {
        "name": "view-publications",
        "description": "View academic publications",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/publications",
          "method": "GET"
        }
      },
      {
        "name": "view-tutorials",
        "description": "View tutorials",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com/tutorials",
          "method": "GET"
        }
      },
      {
        "name": "view-authors",
        "description": "View featured authors",
        "inputSchema": {
          "type": "object",
          "properties": {
            "author_id": {
              "type": "integer",
              "description": "Author ID (optional)"
            }
          }
        },
        "endpoint": {
          "url": "https://scixa.com/authors",
          "method": "GET"
        }
      },
      {
        "name": "go-home",
        "description": "Go to homepage",
        "inputSchema": {
          "type": "object",
          "properties": {}
        },
        "endpoint": {
          "url": "https://scixa.com",
          "method": "GET"
        }
      }
    ],
    "authentication": {
      "supported": true,
      "methods": ["oauth2", "oidc", "session"],
      "discovery": {
        "oauth_authorization_server": "https://scixa.com/.well-known/oauth-authorization-server",
        "openid_configuration": "https://scixa.com/.well-known/openid-configuration",
        "protected_resource": "https://scixa.com/.well-known/oauth-protected-resource"
      }
    }
  },
  "discovery": {
    "agent_skills": "https://scixa.com/.well-known/agent-skills/index.json",
    "mcp_server_card": "https://scixa.com/.well-known/mcp/server-card.json",
    "api_catalog": "https://scixa.com/.well-known/api-catalog",
    "auth_md": "https://scixa.com/auth.md",
    "sitemap": "https://scixa.com/sitemap.xml",
    "robots": "https://scixa.com/robots.txt"
  },
  "security": {
    "headers": {
      "link_headers": [
        {
          "rel": "api-catalog",
          "href": "https://scixa.com/.well-known/api-catalog"
        },
        {
          "rel": "oauth-authorization-server",
          "href": "https://scixa.com/.well-known/oauth-authorization-server"
        },
        {
          "rel": "openid-configuration",
          "href": "https://scixa.com/.well-known/openid-configuration"
        },
        {
          "rel": "oauth-protected-resource",
          "href": "https://scixa.com/.well-known/oauth-protected-resource"
        },
        {
          "rel": "service-doc",
          "href": "https://scixa.com/about"
        },
        {
          "rel": "sitemap",
          "href": "https://scixa.com/sitemap.xml"
        },
        {
          "rel": "mcp-server-card",
          "href": "https://scixa.com/.well-known/mcp/server-card.json"
        },
        {
          "rel": "agent-skills",
          "href": "https://scixa.com/.well-known/agent-skills/index.json"
        }
      ],
      "hsts": "max-age=31536000; includeSubDomains; preload",
      "x_frame_options": "DENY",
      "x_content_type_options": "nosniff"
    }
  },
  "content": {
    "markdown_supported": true,
    "content_types": ["blog", "scientific", "publication", "tutorial", "case_study"],
    "languages": ["en", "ar", "es", "fr", "de", "ja", "zh"]
  },
  "contact": {
    "email": "support@scixa.com",
    "url": "https://scixa.com/contact"
  }
}