AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Molclaw Protein Structure Retrieve

skill-internscience-molclaw-molclaw-protein-structure-retrieve · by InternScience

Retrieve and download protein structure file (pdb format) using gene name, Uniprot ID or PDB ID.

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-internscience-molclaw-molclaw-protein-structure-retrieve

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-internscience-molclaw-molclaw-protein-structure-retrieve)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Molclaw Protein Structure Retrieve? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Retrieve Protein Structure

Note:

  • Local files are not directly accessible by the server. Please upload them to the server using molclaw-file-transfer before execution.
  • For PDB file inputs, it is recommended to preprocess them using molclaw-pdbfixer before execution.
  • Please refer to skill molclaw-scp-server to complete tool invocation.

Scene 1: If the gene name is provided, please use tool retrieveproteinstructurebygene_name.

The description of tool retrieveproteinstructurebygene_name.

Retrieve and download the protein structure (.pdb) file using standard gene name.
Args:
    gene_name (str): Input gene name (e.g., 'TP53')
    organism (str): Species NCBI Taxonomy ID (default: 9606 for human, 10090 for mouse)
    sort_by (str): The sorting strategy defaults ('length') to prioritizing sequence length for maximum coverage, with an alternative option ('resolution') to prioritize structural resolution. 
Return:
    status (str): success/error
    msg (str): message
    prot_structure_path (str): Path to the downloaded protein structure file (pdb format)

How to use tool retrieveproteinstructurebygene_name :

response = await client.session.call_tool(
    "retrieve_protein_structure_by_gene_name",
    arguments={
        "gene_name": gene_name,
        "organism": "9606",
        "sort_by": "length"
    }
)
result = client.parse_result(response)
prot_structure_path = result["prot_structure_path"]

Scene 2: If the UniProt ID is provided, please use tool retrieveproteinstructurebyuniprot_id.

The description of tool retrieveproteinstructurebyuniprot_id.

Retrieve and download the protein structure (.pdb) file using uniprot id.
Args:
    uniprot_id (str): Input uniprot id (e.g., 'P04637')
    sort_by (str): The sorting strategy defaults ('length') to prioritizing sequence length for maximum coverage, with an alternative option ('resolution') to prioritize structural resolution. 
Return:
    status (str): success/error
    msg (str): message
    prot_structure_path (str): Path to the downloaded protein structure file (pdb format)

How to use tool retrieveproteinstructurebyuniprot_id :

response = await client.session.call_tool(
    "retrieve_protein_structure_by_uniprot_id",
    arguments={
        "uniprot_id": uniprot_id,
        "sort_by": "length"
    }
)
result = client.parse_result(response)
prot_structure_path = result["prot_structure_path"]

Scene 3: If the PDB ID is provided, please use tool retrieveproteinstructurebypdb_id.

The description of tool retrieveproteinstructurebypdb_id.

Retrieve and download the protein structure (.pdb) file using pdb id.
Args:
    pdb_id (str): Input pdb id (e.g., "2l3r", "5XYF")
Return:
    status (str): success/error
    msg (str): message
    prot_structure_path (str): Path to the downloaded protein structure file (pdb format)

How to use tool retrieveproteinstructurebypdb_id :

response = await client.session.call_tool(
    "retrieve_protein_structure_by_uniprot_id",
    arguments={
        "pdb_id": pdb_id
    }
)
result = client.parse_result(response)
prot_structure_path = result["prot_structure_path"]

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.