drio
Open app

wegene-assistant MCP server

Source

MCP server to analyze your genetic test results from WeGene

Catalog onlyCatalog onlySTDIO

Overview

WeGene Assistant is an MCP server designed to analyze genetic test results from WeGene, utilizing a large language model (LLM) to interpret user reports.

To use WeGene Assistant, users must authorize their WeGene account, after which they can access their genetic reports through a custom URI scheme and various API tools provided by the server.

  • Integration with WeGene's Open API for seamless report access - Custom URI scheme for easy report retrieval - Multiple tools for user authorization and report management
  1. Analyzing genetic test results for health insights
  2. Accessing and managing multiple genetic profiles
  3. Utilizing LLM for personalized genetic report interpretation

Add to your AI client

Use these steps to connect wegene-assistant MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-wegene-assistant-xraywu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-wegene-assistant-xraywu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-wegene-assistant-xraywu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-wegene-assistant-xraywu": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-wegene-assistant-xraywu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-wegene-assistant-xraywu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-wegene-assistant-xraywu"
      ]
    }
  }
}

FAQ

What is required to use WeGene Assistant?

You need a WeGene Open API key/secret and to authorize your account to access reports.

Can I access multiple reports?

Yes! Once authorized, all reports under your account will be available.

Is there a specific installation process?

Yes, you can install via Smithery or set it up locally by cloning the project and configuring the server.