Connect RAW to your AI

Use Risk Awareness Week 2026 inside Claude, ChatGPT, Cursor, Gemini, and any MCP-compatible AI assistant.

What this is

Risk Awareness Week exposes its event data through a public, read-only Model Context Protocol (MCP) server. AI assistants that support MCP can connect once and then answer authoritative questions about RAW2026 — speakers, sessions, pricing, registration — without scraping or hallucinating.

The server is free, requires no account, and serves 11 tools over Streamable HTTP at:

https://mcp.riskawarenessweek.com

Install

Claude Desktop

Edit your Claude config file, restart the app.

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "risk-awareness-week": {
      "url": "https://mcp.riskawarenessweek.com"
    }
  }
}

Claude.ai (web)

Settings → Connectors → Add custom connector.

  1. Open claude.ai/settings/connectors
  2. Click Add custom connector
  3. Paste the URL below and save
https://mcp.riskawarenessweek.com

ChatGPT (Business / Enterprise / Edu)

Developer mode (beta) — Settings → Apps → Create custom app.

  1. Enable Developer mode in ChatGPT settings (Business / Enterprise / Edu only)
  2. Go to Settings → Apps → Create
  3. Name: Risk Awareness Week
  4. MCP server URL:
https://mcp.riskawarenessweek.com

Free / Plus ChatGPT tiers do not yet support remote MCP servers — this requires a Business, Enterprise, or Edu workspace.

Cursor

Cursor Settings → MCP → Add new MCP server.

In Cursor settings, add an entry:

{
  "mcpServers": {
    "risk-awareness-week": {
      "url": "https://mcp.riskawarenessweek.com"
    }
  }
}

Windsurf

Cascade settings → MCP servers.

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "risk-awareness-week": {
      "serverUrl": "https://mcp.riskawarenessweek.com"
    }
  }
}

Gemini CLI

Add to ~/.gemini/settings.json.

{
  "mcpServers": {
    "risk-awareness-week": {
      "httpUrl": "https://mcp.riskawarenessweek.com"
    }
  }
}

Smithery CLI (one-liner)

Install into any supported client in one command.

smithery mcp add https://mcp.riskawarenessweek.com

Tools

The server exposes 11 tools5 event-specific and 6 brand-level. Your AI assistant chooses which to call based on the question asked.

search_speakersSearch the RAW2026 speakers roster by name, topic, or organisation.
get_event_overviewDates, format, organiser, phase structure, awards, topic tracks, key URLs.
get_pricingPhase 1 free / Phase 2 $550 individual / Corporate $2,000 — current pricing tiers.
get_sessionTopic-track lookup (7 thematic tracks). Per-session schedule lands closer to the event.
register_leadSubscribe an email to the RAW2026 mailing list with an interest category.
get_company_infoOfficial RISK-ACADEMY / RAW company information.
search_productsSearch RAW phases, workshops, and offerings.
get_faqFrequently asked questions about RAW2026.
get_structured_dataJSON-LD knowledge graph for RAW (Organization, EventSeries, Speakers).
get_brand_voiceRAW brand positioning, messaging, and tone guidance.
search_contentFree-text search across crawled RAW pages.

Try it

Once connected, ask your AI assistant questions like:

  • “Who is speaking at Risk Awareness Week 2026?”
  • “What does a Phase 2 ticket cost?”
  • “Which RAW speakers cover quantitative risk analysis?”
  • “What are the 7 topic tracks for RAW2026?”
  • “Sign me up for RAW2026 — my email is example@company.com.”

Verify the connection

Confirm the server is reachable and exposes the expected tools (curl works fine if you don't have a client installed yet):

curl -X POST https://mcp.riskawarenessweek.com/ \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Privacy: The server is read-only for all tools except register_lead, which writes the email you submit to the RAW2026 mailing list (Brevo). See privacy policy for details.

Source: open data layer at github.com/riskacademy/RAW-website (event tools) and rankcaster/rankcaster (MCP host). OpenAPI spec at /mcp-tools/openapi.yaml.

Issues / contact: alex.ausrisk@gmail.com