원클릭으로
alphafold
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | alphafold |
| description | AlphaFold DB for predicted protein structures and pLDDT confidence scores |
AlphaFold DB (by DeepMind and EMBL-EBI) provides predicted 3D structures for over 200M proteins. Structures are predicted by AlphaFold2 and stored with per-residue confidence scores (pLDDT).
import requests
# Fetch prediction for a UniProt accession
uniprot_id = "P04637"
r = requests.get(f"https://alphafold.ebi.ac.uk/api/prediction/{uniprot_id}")
prediction = r.json()[0]
# Get model URLs
cif_url = prediction["cifUrl"] # mmCIF format
pdb_url = prediction["pdbUrl"] # PDB format
pae_url = prediction["paeImageUrl"] # PAE plot image
# Direct download
pdb_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-model_v4.pdb"
cif_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-model_v4.cif"
pae_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-predicted_aligned_error_v4.json"
Shared operational contract for all MedSci agents: sequential execution, planning phase, retry limits, evidence standards.
Isolated exploratory code execution with medsci-sandbox tools. Use when analysis requires custom code beyond existing domain MCP tools.
Molecular biology toolkit. Use for FASTA parsing, sequence analysis, and translation.
ChEMBL database access for bioactivity data and target search
Datamol for molecular manipulation, SMILES processing, and cheminformatics
Molecular ML with DeepChem - featurizers, models, and molecular property prediction