### Uniprot Database
Works with
name: "uniprot-database"
description: "Access protein metadata, function, taxonomy, and sequences across UniProtKB, UniParc, and UniRef. Use when searching for proteins, mapping identifiers, or retrieving functional annotations and publica..."
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionuniprot-databaseExecute the skills CLI command in your project's root directory to begin installation:
Fetches uniprot-database from google-deepmind/science-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate uniprot-database. Access via /uniprot-database in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
| name | uniprot-database |
| description | >- Access protein metadata, function, taxonomy, and sequences across UniProtKB, UniParc, and UniRef. Use when searching for proteins, mapping identifiers, or retrieving functional annotations and publications. Don't use for sequence alignment, protein folding, or sequence similarity search (use specialized skills for those tasks). |
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.Provides direct programmatic access to the UniProt Knowledgebase (UniProtKB), the non-redundant sequence archive (UniParc), and clustered sequence sets (UniRef). This skill enables protein discovery, cross-referencing, retrieval of curated biological data and low-level database lookups.
scripts/uniprot_tools.py) rather than constructing custom curl requests.Choose the right tool based on the task type and data volume:
get: Retrieves metadata and sequence for a specific entry. Best for a
single, known accession.
--dataset unisave), which
is essential for reconciling data from older releases or identifying why
a formerly valid accession no longer appears in search results.search: Searches for entries matching a query. Best for exploration
and discovery.
--limit 5 to verify if a query returns the expected proteins
before committing to a larger download.--limit as it applies to lines, not entries.stream: Streams all matching entries. Best for bulk retrieval of
large datasets (up to 10,000,000 entries).
--limit; always returns the full result set.search with --limit if you need a subset.count: Counts entries matching a query. Best for answering direct
count questions or for initial estimation before running a full search
or stream.sparql: Executes graph queries for complex discovery. Best for
counting, exact sequence matches, and multi-database queries.
map: Converts IDs between UniProt and 100+ databases. Best for ID
mapping tasks.
search vs. map: Try search first before resorting to map if
not explicitly requested by the user. E.g., an external ID might be
searchable in UniParc but fail to map to UniProtKB.Copy this checklist and track progress:
reviewed:true).If a direct query (e.g., gene:SYMBOL) fails:
protein_name:Alpha-crystallin A).[!IMPORTANT] Always prefer
streamorsparqlfor bulk data.searchis suitable for exploration; if results exceed 500 entries, it automatically paginates to provide a stable download.
count: ALWAYS check the result count before running a
search or stream.stream: The primary method for bulk data retrieval (up to
10M entries). Does NOT support --limit; always returns all results.sparql: Best for complex filtering and exact matching
during retrieval.[!IMPORTANT] Use SPARQL when searching for a protein by its full amino acid sequence. The REST API
/searchendpoint does not support direct sequence-string lookups. For any non-exact match use specialized sequence similarity search skills. Use UniParc if you cannot find query in UniProt.
SPARQL Query Pattern (UniProt):
PREFIX up: <http://purl.uniprot.org/core/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?protein ?name WHERE {
?protein a up:Protein ;
up:sequence/rdf:value "SEQUENCE_HERE" .
OPTIONAL {
?protein up:recommendedName/up:fullName ?name .
}
}
SPARQL Query Pattern (UniParc):
PREFIX up: <http://purl.uniprot.org/core/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?uniparc ?val WHERE {
GRAPH <http://sparql.uniprot.org/uniparc> {
?uniparc a up:Sequence ;
rdf:value ?val .
FILTER (?val = "SEQUENCE_HERE")
}
}
[!IMPORTANT] Use
countorSPARQLfor counting entries (e.g., "How many proteins in Human?").
Counting Pattern (Proteins per Organism):
PREFIX up: <http://purl.uniprot.org/core/>
PREFIX taxon: <http://purl.uniprot.org/taxonomy/>
SELECT (COUNT(?protein) AS ?count) WHERE {
?protein a up:Protein ;
up:reviewed true ;
up:organism taxon:9606 .
}
OR
to separate items.
accession:(P12345 OR P67890)accession:P12345 OR accession:P67890gene:p53 human searches for both.Below are example commands for each mode of uniprot_tools.py.
Count total number of entries for a given query.
uv run scripts/uniprot_tools.py count "taxonomy_id:9606"
Search for entries.
uv run scripts/uniprot_tools.py search "gene:p53 AND reviewed:true" --limit 5
Retrieve a single entry by accession.
uv run scripts/uniprot_tools.py get P04637
Retrieve Historical/Deleted Entry (UniSave).
uv run scripts/uniprot_tools.py get P04637 --dataset unisave
Stream large result sets for bulk retrieval (returns ALL matched entries, no
--limit support).
uv run scripts/uniprot_tools.py stream "taxonomy_id:9606 AND reviewed:true" --format tsv --fields accession,gene_names > human_reviewed.tsv
Map IDs from one database to another.
uv run scripts/uniprot_tools.py map "P04637" --from_db UniProtKB_AC-ID --to_db Gene_Name
Execute graph queries with SPARQL.
uv run scripts/uniprot_tools.py sparql 'PREFIX up: <http://purl.uniprot.org/core/> SELECT ?protein WHERE { ?protein a up:Protein ; up:reviewed true . } LIMIT 5'
name: instead of protein_name:: name: is not a supported
query term, use protein_name: instead.P04637) are
linked to functional metadata; UniParc IDs (UPI...) are for sequences
only. You can find cross-references from UniParc IDs to UniProtKB Accessions
using the ID Mapping tool.UniProtKB instead.search "term") frequently return false positives (e.g., common maintenance
proteins) because UniProt searches full metadata, including publication
titles. ALWAYS prefer field-specific filters like cc_function: or
protein_name: for functional discovery.lanM) can match substrings in organism names (e.g., Lancefieldella) or
other fields. Use quotes and field prefixes (e.g., gene:lanM) to isolate
true hits.search for retrieving
millions of entries if stream or sparql can do the job. Streaming is
more efficient for very large datasets. Note that stream has a hard limit
of 10,000,000 outputs and does NOT support --limit.count before running
a search without --limit or before using stream. Unlimited queries can
take a long time and consume significant resources if millions of entries
are returned.--limit with stream: The stream command does NOT support
--limit. If you need a limited number of results, use search with
--limit instead.scripts/uniprot_tools.py):
get, search, stream, count -> rest.uniprot.org/{dataset}/map -> rest.uniprot.org/idmapping/sparql -> sparql.uniprot.org/sparqlget --dataset unisave -> rest.uniprot.org/unisave/Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
google-deepmind/science-skills
google-deepmind/science-skills
google-deepmind/science-skills
K-Dense-AI/scientific-agent-skills
K-Dense-AI/scientific-agent-skills
K-Dense-AI/scientific-agent-skills
uniprot-database reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added uniprot-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in uniprot-database — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added uniprot-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
uniprot-database fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
uniprot-database reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for uniprot-database matched our evaluation — installs cleanly and behaves as described in the markdown.
Solid pick for teams standardizing on skills: uniprot-database is focused, and the summary matches what you get after install.
uniprot-database has been reliable in day-to-day use. Documentation quality is above average for community skills.
We added uniprot-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 64