Skip to main content
Developers & agents

Golden Analytics developer and agent resources

Everything about Golden Analytics is available to a program as well as a person: an MCP server, an OpenAPI spec, a search API, markdown of every page, and machine-readable pricing. All of it is public and read-only, and none of it needs a key.

Golden Analytics MCP server

The MCP server at https://goldenanalytics.com/mcp speaks JSON-RPC 2.0 over Streamable HTTP. It is stateless — there is no session to establish and no credential to send — so a single POST is the whole conversation. Point Claude, ChatGPT, or any MCP client at it and the tools below become callable.

{
  "mcpServers": {
    "golden-analytics": {
      "type": "http",
      "url": "https://goldenanalytics.com/mcp"
    }
  }
}

Or call it directly:

curl -X POST https://goldenanalytics.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
ToolWhat it doesHTTP equivalent
search_contentFull-text search across every published page, blog post, newsroom item, and legal document on goldenanalytics.com.GET /api/search?q={query}
get_pageFetch the full text of any page on goldenanalytics.com as markdown, with front matter carrying the title, description, and canonical URL.GET /{path}
list_pagesEvery indexable URL on goldenanalytics.com, generated from the CMS at request time.GET /sitemap.xml
get_pricingGolden Analytics plans, per-seat prices, monthly and annual billing, what each tier includes, and the pricing FAQ.GET /pricing.md
list_releasesThe Golden Analytics release timeline: dated releases, each with its features, improvements, and fixes.GET /product/whats-new
list_developer_resourcesEvery 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.GET /.well-known/agent-skills/index.json

Three of those tools ship an MCP Apps template — a ui:// resource named in the tool’s _meta.ui.resourceUri — so a host that supports MCP Apps renders the result inline instead of as text: ui://golden-analytics/search-results.html, ui://golden-analytics/pricing-table.html, ui://golden-analytics/release-timeline.html.

Agent interface

API

Content

Policy

Conventions

  • Markdown for any page

    Send Accept: text/markdown to any page URL and the response is that page as markdown, with front matter carrying its title, description, and canonical URL. Responses set Vary: Accept. Markdown has to be named explicitly — a browser Accept header still gets HTML.

  • JSON errors

    Every error under /api is JSON: {error, status, code, message, hint, documentation_url}. code is stable and hint names a concrete next step. 404s carry a recovery list, so a wrong URL costs one request rather than a crawl.

  • Scopes

    The scope vocabulary for this origin is published as RFC 9728 protected-resource metadata at /.well-known/oauth-protected-resource, and per-operation in the OpenAPI spec as x-required-scopes. Reads are public.

  • Questions

    Something missing, or an endpoint behaving oddly? Get in touch.