Skip to main content
Glama

nf-core MCP Server

by wjlim

nf-core MCP サーバー

nf-core パイプライン リポジトリを管理およびナビゲートするための MCP サーバー。

特徴

  • ローカル nf-core リポジトリ (rnaseq、sarek、モジュール、ツール) を一覧表示します
  • パイプライン構成とワークフローにアクセスする
  • パイプラインファイルを検索する
  • パイプラインモジュールを探索する

インストール

NPMバージョン

cd nf-core_mcp npm install # Build TypeScript npm run build # Start the server npm start

Dockerバージョン

# Build the Docker image cd nf-core_mcp docker build -t nf-core-mcp . # Run the container docker run -i --rm \ -v "/path/to/your/workspace:/app/workspace" \ nf-core-mcp

nf-coreリポジトリの追加

新しい nf-core パイプライン リポジトリをワークスペースに追加するには:

  1. リポジトリをクローンします:
    # Navigate to your workspace directory (example for Windows) cd /path/to/your/workspace # Clone desired nf-core repositories git clone https://github.com/nf-core/rnaseq.git git clone https://github.com/nf-core/sarek.git git clone https://github.com/nf-core/modules.git # Add any other nf-core pipeline you want to manage
  2. ディレクトリ構造: ワークスペースは次のようになります。
    workspace/ ├── rnaseq/ ├── sarek/ ├── modules/ └── your-new-pipeline/
  3. インストールの確認: MCP サーバーを起動した後、 list-pipelinesコマンドを使用して、新しいパイプラインが検出されていることを確認します。
    list-pipelines

注: MCP サーバーは、ワークスペース ディレクトリ内のすべての nf-core パイプライン リポジトリを自動的に検出して管理します。

利用可能なツール

  1. list-pipelines
    • ワークスペース内のすべての nf-core パイプラインを一覧表示します
    • 設定ファイルのステータスを表示します
    • パラメータは必要ありません
  2. get-pipeline-modules
    • パイプラインからモジュール情報を取得します
    • パラメータ:
      • pipeline : パイプライン名 (rnaseq、sarek、または modules)
  3. search-pipelines
    • パイプラインファイルを検索する
    • パラメータ:
      • query : 検索クエリ
      • pipeline (オプション): 検索する特定のパイプライン

利用可能なリソース

  1. pipeline-config
    • パイプライン構成を取得する
    • URI 形式: pipeline://{name}/config
    • パラメータ:
      • name : パイプライン名 (rnaseq、sarek、または modules)
  2. pipeline-workflow
    • パイプラインワークフローを取得する
    • URI 形式: pipeline://{name}/workflow
    • パラメータ:
      • name : パイプライン名 (rnaseq、sarek、または modules)

カーソルIDEでの使用

NPXの使用(推奨)

mcp.jsonに次のコードを追加します。

{ "mcpServers": { "nf-core": { "command": "npx", "args": ["-y", "nf-core-mcp"] } } }

Dockerの使用

mcp.jsonに次のコードを追加します。

{ "mcpServers": { "nf-core": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "/path/to/your/workspace:/app/workspace", "nf-core-mcp" ] } } }

使用例

カーソルで MCP サーバーを使用する:

# List available pipelines list-pipelines # Get modules from rnaseq pipeline get-pipeline-modules pipeline=rnaseq # Search in all pipelines search-pipelines query="fastqc" # Search in specific pipeline search-pipelines query="fastqc" pipeline=rnaseq # Access pipeline configuration pipeline://rnaseq/config # Access workflow pipeline://rnaseq/workflow

サーバーの実行

NPMの使用

# If installed globally nf-core-mcp # If installed locally npx nf-core-mcp # Using npx without installation npx -y nf-core-mcp

Dockerの使用

docker run -it --rm \ -v /path/to/your/workspace:/app/workspace \ nf-core-mcp

発達

# Install dependencies npm install # Build TypeScript npm run build # Run in development mode npm run dev # Run tests npm test # Run linter npm run lint

ライセンス

マサチューセッツ工科大学

-
security - not tested
-
license - not tested
-
quality - not tested

local-only server

The server can only run on the client's local machine because it depends on local resources.

ユーザーが nf-core バイオインフォマティクス パイプライン リポジトリを管理およびナビゲートできるようにし、パイプライン構成、ワークフロー、モジュールのリスト、検索、探索操作を可能にします。

  1. 特徴
    1. インストール
      1. NPMバージョン
      2. Dockerバージョン
    2. nf-coreリポジトリの追加
      1. 利用可能なツール
        1. 利用可能なリソース
          1. カーソルIDEでの使用
            1. NPXの使用(推奨)
            2. Dockerの使用
          2. 使用例
            1. サーバーの実行
              1. NPMの使用
              2. Dockerの使用
            2. 発達
              1. ライセンス

                Related MCP Servers

                • -
                  security
                  F
                  license
                  -
                  quality
                  An MCP plugin that provides access to NCBI's dbSNP database, allowing developers to retrieve genetic variant information, search for SNPs, and access clinical significance data directly in their development environment.
                  Last updated -
                  1
                  Python
                • A
                  security
                  A
                  license
                  A
                  quality
                  Enables AI assistants to access protein information directly from UniProt, allowing retrieval of protein names, functions, sequences, and organism data by accession number.
                  Last updated -
                  2
                  1
                  Python
                  MIT License
                  • Apple
                  • Linux
                • A
                  security
                  A
                  license
                  A
                  quality
                  Used to create an assistant integrated with n8n that can search n8n documentation, example workflows, and community forums.
                  Last updated -
                  1
                  6
                  Python
                  MIT License
                • A
                  security
                  A
                  license
                  A
                  quality
                  An MCP server that allows integration with Nia's codebase understanding capabilities through function calling in tools like Cursor and Claude Desktop, enabling users to analyze project structure and search codebases via natural language queries.
                  Last updated -
                  1
                  86
                  3
                  JavaScript
                  MIT License

                View all related MCP servers

                MCP directory API

                We provide all the information about MCP servers via our MCP API.

                curl -X GET 'https://glama.ai/api/mcp/v1/servers/wjlim/nf-core_mcp'

                If you have feedback or need assistance with the MCP directory API, please join our Discord server