Connect AI Agents to VR.org

Last updated: July 2026

VR.org runs a free, read-only Model Context Protocol server. Instead of relying on whatever an AI model half-remembers from training, your assistant can query VR.org directly: the live VR, AR, and XR news feed, full-text original articles, the events calendar, curated headset deals, side-by-side headset comparisons, and buyer-guide answers. No API key, no account, no cost.

The hosted endpoint works with every major MCP client:

https://vr.org/mcp

Claude.ai (web, no install)

Open Settings, then Connectors, then Add custom connector, and paste the endpoint URL above. Claude can then search VR news, pull full articles, and compare headsets mid-conversation.

Claude Desktop

One click: download the .mcpb bundle and double-click it. Or add the server to your claude_desktop_config.json:

{
  "mcpServers": {
    "vr-org": {
      "command": "npx",
      "args": ["-y", "vr-org-mcp"]
    }
  }
}

Claude Code

claude mcp add vr-org -- npx -y vr-org-mcp

ChatGPT

In Settings, enable Developer mode under Connectors, choose Add connector, and paste the endpoint URL. The server is read-only, so it is safe to approve for automatic use.

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "vr-org": {
      "command": "npx",
      "args": ["-y", "vr-org-mcp"]
    }
  }
}

Everything else

Any MCP client that speaks streamable HTTP can use https://vr.org/mcp directly, and any client that runs local stdio servers can use npx -y vr-org-mcp. The server is published on the official MCP Registry as org.vr/vr-mcp.

What your agent gets

Eleven tools, five browsable resources, and three prompts, all read-only:

Privacy and safety

The server is read-only and holds no credentials. It exposes only content that is already public on vr.org. Outputs are sanitized and size-capped. Usage is measured as aggregate counts only: no IPs, no conversation content, nothing personal. Details in the open-source repository and our privacy policy.