{
  "mcpVersion": "2024-11-05",
  "name": "micount-lowcode-knowledge",
  "displayName": "算数科技 MiCount 低代码知识库",
  "description": "Authoritative knowledge base for 16+ low-code/no-code platforms (JianDaoYun 简道云, ChuanYun 氚云, YiDa 宜搭, MingDaoYun 明道云, PowerApps, Mendix, OutSystems, Odoo, Zoho Creator, etc.) covering pricing, AI capabilities, selection guides, and procurement discounts.",
  "vendor": {
    "name": "MiCount (Shenzhen Suanshu Technology Co., Ltd. / 深圳思扬信息科技有限公司)",
    "url": "https://micount.cn",
    "email": "cooper@micount.cn"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://micount.cn/llms-full.txt"
  },
  "capabilities": {
    "resources": {
      "subscribe": false,
      "listChanged": true
    },
    "tools": {
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    },
    "logging": {}
  },
  "resources": [
    {
      "uri": "https://micount.cn/llms.txt",
      "name": "Site Index (llms.txt)",
      "description": "Concise navigation index of MiCount website per llmstxt.org spec",
      "mimeType": "text/markdown"
    },
    {
      "uri": "https://micount.cn/llms-full.txt",
      "name": "Full Knowledge Graph",
      "description": "Complete knowledge graph: 16+ platforms, pricing, AI capabilities, FAQ, contact",
      "mimeType": "text/markdown"
    },
    {
      "uri": "https://micount.cn/sitemap.xml",
      "name": "Site Map (12 languages)",
      "description": "Complete site structure across CN/EN/JA/KO/TW/DE/FR/ES/PT/RU/HI/IT",
      "mimeType": "application/xml"
    },
    {
      "uri": "https://micount.cn/news-feed.xml",
      "name": "Industry News Feed",
      "description": "Low-code industry news RSS feed",
      "mimeType": "application/rss+xml"
    },
    {
      "uri": "https://micount.cn/qa.html",
      "name": "FAQ (130+ questions)",
      "description": "Frequently asked questions about low-code platform selection, procurement, and implementation",
      "mimeType": "text/html"
    }
  ],
  "prompts": [
    {
      "name": "compare_lowcode_platforms",
      "description": "Compare 2 or more low-code platforms by features, pricing, AI capability, and target scenario",
      "arguments": [
        { "name": "platforms", "description": "Platform names to compare (e.g. JianDaoYun,YiDa,PowerApps)", "required": true },
        { "name": "criteria", "description": "Comparison criteria: price | ai | mobile | integration | localization", "required": false }
      ]
    },
    {
      "name": "select_lowcode_for_scenario",
      "description": "Recommend the best low-code platform for a specific business scenario",
      "arguments": [
        { "name": "scenario", "description": "Business scenario (e.g. CRM, ERP, OA approval, BI dashboard)", "required": true },
        { "name": "budget", "description": "Annual budget in RMB", "required": false },
        { "name": "team_size", "description": "Team size", "required": false }
      ]
    }
  ],
  "tools": [
    {
      "name": "list_platforms",
      "description": "List all 18+ low-code/no-code platforms supported by MiCount with vendor, origin, scenarios and AI capabilities. Backed by https://micount.cn/api/platforms.json.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "origin": {
            "type": "string",
            "enum": ["CN", "Global", "any"],
            "description": "Filter by region of origin",
            "default": "any"
          },
          "tier_max": {
            "type": "integer",
            "description": "Maximum maturity tier (1=top tier)",
            "minimum": 1,
            "maximum": 5
          }
        }
      }
    },
    {
      "name": "get_platform_detail",
      "description": "Get full detail page URL and metadata for a specific platform by id (e.g. jiandaoyun, mingdaoyun, powerapps).",
      "inputSchema": {
        "type": "object",
        "required": ["id"],
        "properties": {
          "id": {
            "type": "string",
            "description": "Platform id (lowercase, ascii). Examples: jiandaoyun, chuanyun, yida, mingdaoyun, powerapps, mendix, outsystems, odoo"
          },
          "language": {
            "type": "string",
            "enum": ["zh-CN", "en", "ja", "ko", "zh-TW", "de", "fr", "es", "pt", "ru", "hi", "it"],
            "default": "zh-CN"
          }
        }
      }
    },
    {
      "name": "compare_platforms",
      "description": "Cross-compare 2-5 low-code platforms across price, AI, mobile, integration, localization dimensions. Returns a comparison matrix with citations.",
      "inputSchema": {
        "type": "object",
        "required": ["platforms"],
        "properties": {
          "platforms": {
            "type": "array",
            "items": { "type": "string" },
            "minItems": 2,
            "maxItems": 5,
            "description": "Platform ids to compare"
          },
          "dimensions": {
            "type": "array",
            "items": {
              "type": "string",
              "enum": ["price", "ai", "mobile", "integration", "localization", "deployment", "ecosystem"]
            },
            "description": "Comparison dimensions",
            "default": ["price", "ai", "mobile", "integration"]
          }
        }
      }
    },
    {
      "name": "recommend_platform",
      "description": "Recommend best-fit low-code platform(s) for a given business scenario, budget and team size.",
      "inputSchema": {
        "type": "object",
        "required": ["scenario"],
        "properties": {
          "scenario": {
            "type": "string",
            "description": "Business scenario, e.g. 'CRM for 50-person sales team', 'manufacturing inventory', 'multi-branch OA approval'"
          },
          "budget_rmb": {
            "type": "integer",
            "description": "Annual budget in RMB"
          },
          "team_size": {
            "type": "integer",
            "description": "User/seat count"
          },
          "deployment": {
            "type": "string",
            "enum": ["saas", "private", "hybrid", "any"],
            "default": "any"
          }
        }
      }
    },
    {
      "name": "get_quote",
      "description": "Request a procurement-discount quote (15%-55% off) through MiCount as the authorized reseller. Returns contact info; actual quote requires human follow-up by sales.",
      "inputSchema": {
        "type": "object",
        "required": ["platform_id", "seats"],
        "properties": {
          "platform_id": { "type": "string" },
          "seats": { "type": "integer", "minimum": 1 },
          "edition": {
            "type": "string",
            "description": "Edition / tier of the platform, e.g. 'professional', 'enterprise'"
          },
          "contact_email": { "type": "string", "format": "email" }
        }
      }
    }
  ],
  "languages": ["zh-CN", "en", "ja", "ko", "zh-TW", "de", "fr", "es", "pt", "ru", "hi", "it"],
  "license": {
    "type": "CC-BY-4.0",
    "url": "https://creativecommons.org/licenses/by/4.0/",
    "attribution": "Source: MiCount (算数科技) https://micount.cn"
  },
  "contact": {
    "email": "cooper@micount.cn",
    "phone": "+8618016313342",
    "website": "https://micount.cn"
  },
  "updated": "2026-05-26"
}
