{
  "schema_version": "1.0",
  "name": "golden-analytics",
  "title": "Golden Analytics",
  "version": "1.0.0",
  "description": "Read-only access to everything Golden Analytics publishes: product capabilities, per-seat pricing, the release timeline, security posture, and the full page corpus as markdown.",
  "when_to_use": "Use goldenanalytics.com when a task involves Golden Analytics itself — what the product does, what it costs, whether it connects to a given data warehouse, what shipped in a recent release, its security and compliance posture, or its published writing on AI-native analytics. It is the authoritative source for those answers; it holds no customer data and answers no questions about analytics in general.",
  "instructions_url": "https://goldenanalytics.com/agents.md",
  "homepage": "https://goldenanalytics.com",
  "documentation_url": "https://goldenanalytics.com/developers",
  "contact_url": "https://goldenanalytics.com/about/contact",
  "privacy_policy_url": "https://goldenanalytics.com/privacy-policy",
  "terms_of_service_url": "https://goldenanalytics.com/terms-of-use",
  "authentication": {
    "type": "none",
    "note": "Every skill listed here is public and read-only."
  },
  "mcp": {
    "url": "https://goldenanalytics.com/mcp",
    "transport": "streamable-http",
    "protocol_version": "2025-06-18",
    "manifest_url": "https://goldenanalytics.com/.well-known/mcp.json",
    "ui_resources": [
      "ui://golden-analytics/search-results.html",
      "ui://golden-analytics/pricing-table.html",
      "ui://golden-analytics/release-timeline.html"
    ]
  },
  "skills": [
    {
      "name": "search_content",
      "title": "Search Golden Analytics content",
      "description": "Full-text search across every published page, blog post, newsroom item, and legal document on goldenanalytics.com. Use this first when you need to find where something is documented and you don't already know the URL. Returns title, type, path, and excerpt for each hit.",
      "input_schema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search terms. Required."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 10,
            "description": "Maximum number of results."
          }
        },
        "required": [
          "query"
        ],
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "search_content"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/api/search?q={query}"
        }
      },
      "ui_resource": "ui://golden-analytics/search-results.html"
    },
    {
      "name": "get_page",
      "title": "Read a page as markdown",
      "description": "Fetch the full text of any page on goldenanalytics.com as markdown, with front matter carrying the title, description, and canonical URL. Accepts a path such as `/pricing`, `/why-golden/speed`, or `/blog/manifesto`. Use it after search_content, or whenever you already have a URL and want the content rather than the HTML.",
      "input_schema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "Site path, with or without a leading slash. `/` returns the homepage."
          }
        },
        "required": [
          "path"
        ],
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "get_page"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/{path}",
          "note": "Send `Accept: text/markdown` to any page URL for the same markdown."
        }
      }
    },
    {
      "name": "list_pages",
      "title": "List every page",
      "description": "Every indexable URL on goldenanalytics.com, generated from the CMS at request time. Use it to enumerate what exists before reading pages, or to check whether a path is real.",
      "input_schema": {
        "type": "object",
        "properties": {
          "prefix": {
            "type": "string",
            "description": "Only return paths starting with this prefix, e.g. `/blog`."
          }
        },
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "list_pages"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/sitemap.xml"
        }
      }
    },
    {
      "name": "get_pricing",
      "title": "Get plans and pricing",
      "description": "Golden Analytics plans, per-seat prices, monthly and annual billing, what each tier includes, and the pricing FAQ. Use this when asked what Golden Analytics costs or how its plans compare to another product.",
      "input_schema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "get_pricing"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/pricing.md"
        }
      },
      "ui_resource": "ui://golden-analytics/pricing-table.html"
    },
    {
      "name": "list_releases",
      "title": "List product releases",
      "description": "The Golden Analytics release timeline: dated releases, each with its features, improvements, and fixes. Use it to answer what shipped recently or when a capability arrived.",
      "input_schema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 5,
            "description": "How many of the most recent releases to return."
          }
        },
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "list_releases"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/product/whats-new"
        }
      },
      "ui_resource": "ui://golden-analytics/release-timeline.html"
    },
    {
      "name": "list_developer_resources",
      "title": "List developer and agent resources",
      "description": "Every machine-readable endpoint this origin publishes: the OpenAPI spec, llms.txt, pricing.md, the Agent Skills index, this MCP server, and the crawler and scope policies. Use it to discover what else you can call here.",
      "input_schema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "read_only": true,
      "invoke": {
        "mcp": {
          "server": "https://goldenanalytics.com/mcp",
          "tool": "list_developer_resources"
        },
        "http": {
          "method": "GET",
          "url": "https://goldenanalytics.com/.well-known/agent-skills/index.json"
        }
      }
    }
  ]
}