Loading...
Loading...
VR Eddie · Integrations
One hosted MCP endpoint. Five tools. Works with Claude Desktop, Cursor, Continue, Zed, and any other Model Context Protocol client. No install, no signup, no third-party registry — connect by URL.
Hosted endpoint
https://www.vreddie.com/api/mcpStateless · public · read-only · no API key. Updated every time vreddie.com deploys.
get_headset_recommendationTop 3 VR headsets for a budget + use case + experience level. Returns VR Eddie Ratings (0–100) with links.
compare_headsetsSide-by-side spec sheet, pros/cons, and an Eddie verdict for any two headsets.
get_vr_dealsCurrent VR headset pricing, sorted low to high, with links to the deals page.
get_game_ratingEddie's rating + sentiment summary + pros/cons for any of 854 scored VR games.
check_compatibilityConfirms whether a specific game runs on a specific headset, with performance notes when available.
search_gamesDiscover games by attribute combo — category, platform, min Eddie score, release year. Returns up to 10 matches sorted by rating.
Click Copy, paste into your client’s config, restart. The hosted snippet is the recommended path; the npm snippet is the fallback if you want to run the server locally over stdio.
claude_desktop_config.jsonAnthropic's native desktop client. Edit the JSON config in Settings → Developer → Edit Config.
{
"mcpServers": {
"vreddie": {
"type": "http",
"url": "https://www.vreddie.com/api/mcp"
}
}
}{
"mcpServers": {
"vreddie": {
"command": "npx",
"args": ["-y", "vreddie-mcp-server"]
}
}
}~/.cursor/mcp.jsonSettings → MCP Servers → Add new MCP server. Pick HTTP for the hosted endpoint, Command for npm.
{
"mcpServers": {
"vreddie": {
"url": "https://www.vreddie.com/api/mcp"
}
}
}{
"mcpServers": {
"vreddie": {
"command": "npx",
"args": ["-y", "vreddie-mcp-server"]
}
}
}~/.continue/config.jsonOpen the Continue config file via the gear icon → Edit config. The mcpServers block is the same shape as Claude Desktop's.
{
"mcpServers": {
"vreddie": {
"transport": { "type": "streamable-http", "url": "https://www.vreddie.com/api/mcp" }
}
}
}{
"mcpServers": {
"vreddie": {
"command": "npx",
"args": ["-y", "vreddie-mcp-server"]
}
}
}~/.config/zed/settings.jsonZed Settings → AI → Context Servers → Add. Or paste the snippet into your Zed settings.json.
{
"context_servers": {
"vreddie": {
"source": "custom",
"command": null,
"url": "https://www.vreddie.com/api/mcp"
}
}
}{
"context_servers": {
"vreddie": {
"source": "custom",
"command": {
"path": "npx",
"args": ["-y", "vreddie-mcp-server"]
}
}
}
}Implementation lives at vreddie2go/vreddie-platform · /mcp. MIT licensed. Read-only — there are no auth or write paths.
Email vreddie2go@gmail.com or open an issue on GitHub. Tool requests welcome.