Omics AI MCP Server

Omics AI MCP Server

Enables AI agents to conversationally interact with genomics research networks for data analysis and discovery across multiple Omics AI Explorer platforms. It provides tools for exploring data collections, examining table schemas, and executing SQL queries against datasets like Viral AI and Neuroscience AI.

Category
访问服务器

README

Omics AI MCP Server

A Model Context Protocol (MCP) server that enables AI agents to conversationally interact with Omics AI Explorer networks for genomics research and data analysis.

Overview

This MCP server wraps the functionality of the omics-ai-python-library to provide AI agents with seamless access to genomics data across multiple Omics AI Explorer networks including:

  • HiFi Solves (hifisolves.org) - Long-read sequencing data
  • Neuroscience AI (neuroscience.ai) - Neuroscience genomics data
  • ASAP (cloud.parkinsonsroadmap.org) - Aligning Science Across Parkinson's
  • Viral AI (viral.ai) - Viral genomics and surveillance data
  • Target ALS (dataportal.targetals.org) - ALS research data

Features

The MCP server provides the following tools for AI agents:

  • list_collections - Discover available data collections in any network
  • list_tables - Browse tables within specific collections
  • get_schema_fields - Examine table schemas and field types
  • query_table - Query data with filters, pagination, and ordering
  • count_rows - Count rows matching specific criteria
  • sql_search - Execute direct SQL queries using Trino syntax

Installation

git clone https://github.com/mfiume/omics-ai-mcp.git
cd omics-ai-mcp
npm install

Usage

Running the Server

npm start

Configuration for Claude Desktop

Add to your Claude Desktop configuration file:

{
  "mcpServers": {
    "omics-ai": {
      "command": "node",
      "args": ["src/index.js"],
      "cwd": "/path/to/omics-ai-mcp"
    }
  }
}

Example AI Agent Interactions

Once configured, AI agents can conversationally query genomics data:

Agent: "What collections are available on the Viral AI network?"

User: "Show me the tables in the virusseq collection"

Agent: "List the first 10 variants from the variants table where chromosome equals chr1"

User: "How many total variants are in the VirusSeq database?"

Tool Reference

list_collections

Lists all available collections in a network.

Parameters:

  • network (required): Network name (hifisolves, viral, neuroscience, etc.) or full URL
  • access_token (optional): Authentication token

list_tables

Lists all tables in a specific collection.

Parameters:

  • network (required): Network name or URL
  • collection_slug (required): Collection identifier (e.g., "virusseq", "gnomad")
  • access_token (optional): Authentication token

get_schema_fields

Retrieves the schema and field definitions for a table.

Parameters:

  • network (required): Network name or URL
  • collection_slug (required): Collection identifier
  • table_name (required): Qualified table name (e.g., "collections.virusseq.variants")
  • access_token (optional): Authentication token

query_table

Queries data from a table with optional filtering and pagination.

Parameters:

  • network (required): Network name or URL
  • collection_slug (required): Collection identifier
  • table_name (required): Qualified table name
  • filters (optional): Filter criteria object
  • limit (optional): Max rows to return (default: 100)
  • offset (optional): Rows to skip (default: 0)
  • order_by (optional): Sort specification
  • access_token (optional): Authentication token

count_rows

Counts rows matching specified filters.

Parameters:

  • network (required): Network name or URL
  • collection_slug (required): Collection identifier
  • table_name (required): Qualified table name
  • filters (optional): Filter criteria object
  • access_token (optional): Authentication token

sql_search

Executes direct SQL queries against a collection using Trino syntax with enhanced result formatting.

Parameters:

  • network (required): Network name or URL
  • collection_slug (required): Collection identifier
  • sql (required): SQL query string (use Trino syntax with double quotes for identifiers)
  • max_polls (optional): Maximum number of polling attempts (default: 10)
  • poll_interval (optional): Seconds to wait between polls (default: 2.0)
  • access_token (optional): Authentication token

Features:

  • Automatic async query polling with robust error handling
  • Intelligent result formatting (table view for simple data, JSON for complex)
  • Progress indicators and pagination info
  • Timeout management for long-running queries

Example queries:

  • SELECT COUNT(*) FROM "schema"."table"
  • SELECT * FROM "schema"."variants" WHERE chrom = 'chr1' LIMIT 10
  • SELECT DISTINCT chrom FROM "schema"."variants" ORDER BY chrom

Supported Networks

The server supports these pre-configured networks (use short names for convenience):

Short Name Full URL Description
hifisolves hifisolves.org Long-read sequencing data
neuroscience neuroscience.ai Neuroscience genomics
asap cloud.parkinsonsroadmap.org Parkinson's research
viral viral.ai Viral genomics
targetals dataportal.targetals.org ALS research

Error Handling

The server includes robust error handling for:

  • Network connectivity issues
  • Authentication failures
  • Invalid parameters
  • API response parsing errors
  • Timeout handling for long-running queries

Development

# Development mode with auto-restart
npm run dev

# Production mode
npm start

License

MIT License - see LICENSE file for details.

Related Projects

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选
mcp-server-qdrant

mcp-server-qdrant

这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。

官方
精选
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选