MCP Wegene Assistant MCP Server

MCP server for WeGene Assistant, using LLM to analyze a user's WeGene genetic testing report.

Local serverstdio

What is the MCP Wegene Assistant MCP server?

MCP server for WeGene Assistant, using LLM to analyze a user's WeGene genetic testing report. That is what the mcp wegene assistant mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

Getting it running

Installation goes through your MCP client rather than a global install: point it at @smithery/cli on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 9 tools. What each one is for:

  • wegene-oauth — ** Start a WeGene Open API oAuth process in the browser
  • wegene-get-profiles — ** Read the profile list under a user's WeGene account
  • wegene-get-report-info — ** Return the report meta info so LLM will know what reports are available
  • wegene-get-report — ** Read the results of a single report under a profile
  • Arguements — report_endpoint: The report's endpoint to be retrieved from
  • report_id — The report's id to be retrieved
  • profile_id — The profile id to retrieve report from
  • Resources — Once a user is authorized, all the reports under his/her account will be exposed as a resource: - Custom wegene:// URI scheme for accessing each
  • Tools — The server implements one tool: - wegene-oauth: Start a WeGene Open API oAuth process in the browser - The user should complete the authorization

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Wegene Assistant.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Wegene Assistant's toolset — wegene-oauth, wegene-get-profiles, wegene-get-report-info and 6 more — is a fair guide to whether it matches your workflow. It is maintained by xraywu; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
wegene-oauth** Start a WeGene Open API oAuth process in the browser
wegene-get-profiles** Read the profile list under a user's WeGene account
wegene-get-report-info** Return the report meta info so LLM will know what reports are available.
wegene-get-report** Read the results of a single report under a profile
Arguementsreport_endpoint: The report's endpoint to be retrieved from
report_idThe report's id to be retrieved
profile_idThe profile id to retrieve report from
ResourcesOnce a user is authorized, all the reports under his/her account will be exposed as a resource: - Custom wegene:// URI scheme for accessing each individual report - A report resource has a name, description and applicati
ToolsThe server implements one tool: - **wegene-oauth:** Start a WeGene Open API oAuth process in the browser - The user should complete the authorization in 120 seconds so LLM will be able to further access the reports. - **

How to install the MCP Wegene Assistant MCP server

{
  "mcpServers": {
    "wegene-assistant": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MCP Wegene Assistant to wegene-oauth.
  • Use MCP Wegene Assistant to wegene-get-profiles.
  • Use MCP Wegene Assistant to wegene-get-report-info.

Frequently asked questions

It connects MCP Wegene Assistant to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (wegene-oauth, wegene-get-profiles, wegene-get-report-info, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Wegene Assistant directly.