You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MCPinstaller:
- Standalone GUI tool for configuring MCP clients
- Auto-detects Claude Desktop, Cursor, VS Code, and 8+ other clients
- Embedded mcp_bridge.js (no separate file needed)
- Extracts bridge to AppData/Orpheus on install
- Admin manifest for writing to various config directories
DMA improvements:
- Display actual device name (Enigma X1, ScreamerM2, etc.) in status bar
- Query FPGA device ID via VMMDLL_ConfigGet
- Fallback to generic "fpga" if device unknown
Other fixes:
- Fix F11 fullscreen toggle not working after first use
- Reset ImGui layout on fullscreen transitions for smoother experience
- Move runtime DLLs to AppData for persistent storage
- Update release workflow to include MCPinstaller.exe
Use **MCPinstaller** to automatically configure all your MCP clients:
53
+
48
54
1. Start Orpheus and enable MCP server in settings
49
-
2. Configure Claude Code to use the MCP bridge:
55
+
2. Copy the API key from Orpheus (Settings > MCP > Copy API Key)
56
+
3. Run `MCPinstaller.exe` (included in releases)
57
+
4. Enter your Orpheus server URL and API key
58
+
5. Select which clients to configure (Claude Desktop, Cursor, VS Code, etc.)
59
+
6. Click Install - restart your MCP clients to apply
60
+
61
+
MCPinstaller auto-detects and configures: Claude Desktop, Cursor, Claude Code, Windsurf, VS Code, Cline, Roo Code, LM Studio, Zed, Amazon Q, Warp, and more.
62
+
63
+
#### Manual Configuration
64
+
65
+
Alternatively, manually add to your MCP client config (e.g., `~/.claude/claude_desktop_config.json`):
50
66
51
67
```json
52
68
{
53
69
"mcpServers": {
54
70
"orpheus": {
55
71
"command": "node",
56
-
"args": ["path/to/mcp_bridge.js"],
72
+
"args": ["C:/path/to/mcp_bridge.js"],
57
73
"env": {
58
-
"ORPHEUS_MCP_URL": "http://localhost:8765",
59
-
"ORPHEUS_API_KEY": "your-api-key"
74
+
"ORPHEUS_MCP_URL": "http://192.168.1.100:8765",
75
+
"ORPHEUS_API_KEY": "oph_your_key_here"
60
76
}
61
77
}
62
78
}
63
79
}
64
80
```
65
81
82
+
**Notes:**
83
+
-`ORPHEUS_MCP_URL`: Use `localhost` if on the same machine, otherwise use the Orpheus server IP
84
+
-`ORPHEUS_API_KEY`: Required - copy from Orpheus GUI
0 commit comments