🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

vreddie-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vreddie-mcp-server

MCP server exposing VR Eddie's headset ratings, game reviews, deals, and compatibility data to AI assistants

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
46
-20.69%
Maintainers
1
Weekly downloads
 
Created
Source

vreddie-mcp-server

npm version License: MIT

Bring VR Eddie's headset ratings, game scores, live deals, and compatibility checks directly into any Model Context Protocol (MCP) client — Claude Desktop, Cursor, Continue, Zed, and friends.

VR Eddie has been reviewing virtual-reality headsets and rating VR games for ten years. This server exposes that review desk as five tools your AI assistant can call:

ToolWhat it does
get_headset_recommendationReturns the top 3 headsets matching a budget, use case, and experience level.
compare_headsetsSide-by-side comparison of two headsets across price, weight, FOV, resolution, library, and Eddie Score.
get_vr_dealsLive VR deals across major retailers (Best Buy, Amazon, Sony Direct, Walmart).
get_game_ratingEddie's rating + tags for any of the 854 scored VR games.
check_compatibilityConfirms whether a given game runs on a given headset, with notes.

All data comes from vreddie.com and is cached locally for 7 days (configurable). Read-only — no writes or auth required.

Install

There are two ways to connect VR Eddie to your AI assistant:

https://www.vreddie.com/api/mcp

No install. No npm. Update-on-deploy. Drop-in configs for every major MCP client are at https://www.vreddie.com/integrations.

Option 2 — npm (local stdio)

The local-stdio path if you prefer running the server on your own machine:

npx vreddie-mcp-server

Or install globally:

npm install -g vreddie-mcp-server
vreddie-mcp-server

Use it with Claude Desktop

Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vr-eddie": {
      "command": "npx",
      "args": ["-y", "vreddie-mcp-server"],
      "env": {
        "VREDDIE_BASE_URL": "https://www.vreddie.com",
        "CACHE_TTL_DAYS": "7"
      }
    }
  }
}

Restart Claude Desktop. The vr-eddie server will appear in the MCP servers panel, and the five tools will be available to call from chat.

Use it with Cursor / Continue / Zed

Each of these editors reads MCP config from a similar JSON file. Use the same command/args/env block as above, dropped into your editor's MCP config file.

Configuration

Env varDefaultNotes
VREDDIE_BASE_URLhttps://www.vreddie.comWhere to fetch headset/game/deal data from.
CACHE_TTL_DAYS7How long to cache the catalog before re-fetching.
VREDDIE_CACHE_FILE./data/vr-eddie-cache.jsonWhere to persist the cache. Set to an absolute path if you launch from an unpredictable working directory.

Examples

In Claude Desktop, ask things like:

"Use vr-eddie to recommend a VR headset for sim racing under $600 — I'm an enthusiast."

"Compare the Meta Quest 3 and the Sony PSVR2 using vr-eddie."

"What's Eddie's rating for Half-Life Alyx?"

"Are there any VR deals live right now?"

License

MIT © VR Eddie

Keywords

mcp

FAQs

Package last updated on 10 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts