{
  "name": "SE Studio",
  "version": "1.0.0",
  "description": "Public read-only agent for the SE Studio marketing site. Search published pages and case studies, fetch clean markdown, and read site-info. Connect via MCP at /api/mcp (see server card).",
  "url": "https://www.se.studio/api/mcp",
  "provider": {
    "organization": "Something Else",
    "url": "https://www.se.studio"
  },
  "supportedInterfaces": [
    {
      "url": "https://www.se.studio/api/mcp",
      "transport": "http",
      "protocol": "MCP/2025-11-25"
    }
  ],
  "capabilities": {
    "streaming": true,
    "pushNotifications": false
  },
  "skills": [
    {
      "id": "search_site",
      "name": "Search site",
      "description": "Hybrid search over published SE Studio content. Returns titles, hrefs, and snippets. Use get_markdown on a result path for full page content.",
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text"
      ],
      "examples": [
        "Search for Contentful marketing case studies",
        "Find pages about Next.js or A/B testing"
      ]
    },
    {
      "id": "get_markdown",
      "name": "Get markdown",
      "description": "Fetch a public page or article as clean Markdown (frontmatter + body). Prefer this over scraping HTML.",
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text"
      ],
      "examples": [
        "Get markdown for /about",
        "Fetch the home page as markdown"
      ]
    },
    {
      "id": "get_site_info",
      "name": "Get site info",
      "description": "Fetch the factual site-info document (counts, lists, summary) for assistants and support.",
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text"
      ],
      "examples": [
        "Summarize what content types this site has"
      ]
    }
  ]
}