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.comInstall
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.
- Open claude.ai/settings/connectors
- Click Add custom connector
- Paste the URL below and save
https://mcp.riskawarenessweek.comChatGPT (Business / Enterprise / Edu)
Developer mode (beta) — Settings → Apps → Create custom app.
- Enable Developer mode in ChatGPT settings (Business / Enterprise / Edu only)
- Go to Settings → Apps → Create
- Name:
Risk Awareness Week - MCP server URL:
https://mcp.riskawarenessweek.comFree / 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.comTools
The server exposes 11 tools — 5 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