细胞系知识资源服务器

myalone/cellosaurus
Hosted
1 Stars 1.5k 次浏览 transfer 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (6 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

search_cell_lines 5 个参数

该工具无需必填参数,直接调用即可

get_cell_line_info 2 个参数 需填 1 项

必填参数:accession

get_release_info

该工具无需必填参数,直接调用即可

find_cell_lines_by_disease 4 个参数 需填 1 项

必填参数:disease

find_cell_lines_by_tissue 4 个参数 需填 1 项

必填参数:tissue

list_available_fields

该工具无需必填参数,直接调用即可

服务介绍

细胞系知识资源服务器 cellosaurus

Cellosaurus MCP Server是一个非官方的模型上下文协议服务器,用于访问SIB Cellosaurus细胞系知识资源,提供细胞系搜索、详细信息获取和数据库版本信息等功能。
null## 工具列表 Tool List

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。

工具 Tool 描述 Description
search_cell_lines Search for cell lines in the Cellosaurus database. Use Solr search syntax to find cell lines by various criteria. Examples -------- - Basic name search: "id:HeLa" or "sy:HeLa" - Species filter: "ox:human" or "ox:9606" - Disease filter: "di:cancer" or "di:hepatoblastoma" - Combined: "ox:human di:cancer ca:cancer" - Site filter: "derived-from-site:liver" Args: query: Search query using Solr syntax (default: "id:HeLa") fields: List of fields to return (e.g., ["id", "ac", "ox", "di"]) start: Starting index for pagination (default: 0) rows: Number of results to return (default: 10, max: 1000) sort_order: Sort order (e.g., "group asc,derived-from-site desc") Returns ------- Dictionary containing search results with cell line information
get_cell_line_info Get detailed information about a specific cell line by its accession number. Args: accession: Cell line accession number (e.g., "CVCL_0030" for HeLa) fields: List of specific fields to return (e.g., ["id", "ac", "str", "di"]) Returns ------- Dictionary containing detailed cell line information
get_release_info Get information about the current Cellosaurus database release. Returns ------- Dictionary containing release version, date, and statistics
find_cell_lines_by_disease Find cell lines derived from patients with a specific disease. Args: disease: Disease name or term (e.g., "hepatoblastoma", "cancer", "leukemia") species: Species filter (default: "human", can be "mouse", "rat", etc.) fields: Specific fields to return limit: Maximum number of results (default: 10) Returns ------- Dictionary containing cell lines associated with the disease
find_cell_lines_by_tissue Find cell lines derived from a specific tissue or organ. Args: tissue: Tissue/organ name (e.g., "liver", "lung", "breast", "brain") species: Species filter (default: "human") fields: Specific fields to return limit: Maximum number of results (default: 10) Returns ------- Dictionary containing cell lines from the specified tissue
list_available_fields Get a list of all available fields that can be requested from the Cellosaurus API. Returns ------- Dictionary mapping field names to their descriptions

检查服务 ## Inspector

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777419071553539

Online Tool test https://mcp.xiaobenyang.com/inspector/1777419071553539

服务配置 MCP Server Config

如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY
Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.

SSE

{
  "mcpServers": {
    "细胞系知识资源服务器": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777419071553539/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "细胞系知识资源服务器": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777419071553539/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "细胞系知识资源服务器": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777419071553539",
          },
          "transport": "stdio"
        }
      }
}

相关 MCP 服务