nf-core MCP Server
nf-core MCP サーバー
nf-core パイプライン リポジトリを管理およびナビゲートするための MCP サーバー。
特徴
ローカル nf-core リポジトリ (rnaseq、sarek、モジュール、ツール) を一覧表示します
パイプライン構成とワークフローにアクセスする
パイプラインファイルを検索する
パイプラインモジュールを探索する
Related MCP server: Bio-OS MCP Server
インストール
NPMバージョン
cd nf-core_mcp
npm install
# Build TypeScript
npm run build
# Start the server
npm startDockerバージョン
# 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-mcpnf-coreリポジトリの追加
新しい nf-core パイプライン リポジトリをワークスペースに追加するには:
リポジトリをクローンします:
# 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ディレクトリ構造: ワークスペースは次のようになります。
workspace/ ├── rnaseq/ ├── sarek/ ├── modules/ └── your-new-pipeline/インストールの確認: MCP サーバーを起動した後、
list-pipelinesコマンドを使用して、新しいパイプラインが検出されていることを確認します。list-pipelines
注: MCP サーバーは、ワークスペース ディレクトリ内のすべての nf-core パイプライン リポジトリを自動的に検出して管理します。
利用可能なツール
list-pipelinesワークスペース内のすべての nf-core パイプラインを一覧表示します
設定ファイルのステータスを表示します
パラメータは必要ありません
get-pipeline-modulesパイプラインからモジュール情報を取得します
パラメータ:
pipeline: パイプライン名 (rnaseq、sarek、または modules)
search-pipelinesパイプラインファイルを検索する
パラメータ:
query: 検索クエリpipeline(オプション): 検索する特定のパイプライン
利用可能なリソース
pipeline-configパイプライン構成を取得する
URI 形式:
pipeline://{name}/configパラメータ:
name: パイプライン名 (rnaseq、sarek、または modules)
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-mcpDockerの使用
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ライセンス
マサチューセッツ工科大学
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
FlicenseNot gradedqualityNot gradedmaintenanceEnables building and querying code knowledge graphs for project analysis, with tools for exploring code relationships, managing workflows, and automating development tasks. Integrates with Git and GitHub for branch management and pull request creation.426- AlicenseCqualityBmaintenanceEnables workflow management and Docker image building for Bio-OS platform. Supports WDL workflow submission, validation, and monitoring, along with Docker image building and status tracking for bioinformatics workflows.225MIT
- AlicenseNot gradedqualityBmaintenanceExposes pipen bioinformatics pipelines as MCP tools, allowing AI assistants to discover and run complex workflows through a progressive disclosure interface.1MIT
- AlicenseAqualityCmaintenanceEnables interaction with GitHub repositories, issues, pull requests, code search, branches, and GitHub Actions workflows.8168MIT
Related MCP Connectors
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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