{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "name": "flowie",
  "title": "Flowie",
  "description": "Read-only Model Context Protocol server for get-flowie.com. Lets agents search Flowie's public content, fetch any page as Markdown, and retrieve a canonical company/product overview — grounded only in published get-flowie.com content. No authentication required.",
  "version": "1.0.0",
  "serverUrl": "https://get-flowie.com/mcp",
  "transport": "streamable-http",
  "protocolVersion": "2025-11-25",
  "websiteUrl": "https://get-flowie.com",
  "documentationUrl": "https://get-flowie.com/llms.txt",
  "publisher": {
    "name": "Flowie",
    "url": "https://get-flowie.com"
  },
  "capabilities": {
    "tools": { "listChanged": false }
  },
  "authentication": {
    "type": "none"
  },
  "tools": [
    {
      "name": "search_flowie",
      "title": "Search Flowie",
      "description": "Search public get-flowie.com content and return the most relevant pages with title, URL, and a snippet.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": { "type": "string", "description": "Natural-language search query." },
          "locale": { "type": "string", "enum": ["en", "fr"], "default": "en", "description": "Content language." },
          "limit": { "type": "integer", "minimum": 1, "maximum": 10, "default": 5, "description": "Maximum number of results." }
        },
        "required": ["query"],
        "additionalProperties": false
      }
    },
    {
      "name": "fetch_flowie_page",
      "title": "Fetch Flowie page (markdown)",
      "description": "Return the clean Markdown of a single get-flowie.com page given its path or full URL.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": { "type": "string", "description": "Page path or full URL, e.g. '/platform/ai-agents'." }
        },
        "required": ["path"],
        "additionalProperties": false
      }
    },
    {
      "name": "get_flowie_overview",
      "title": "Flowie overview",
      "description": "Return a canonical, citable summary of Flowie — positioning, capabilities, compliance, pricing, and key URLs. No arguments.",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false }
    }
  ]
}
