ITIS MCP Server
This server provides a Model Context Protocol (MCP) interface to the Integrated Taxonomic Information System (ITIS) database, enabling comprehensive taxonomic data searches and exploration.
Search Capabilities:
Scientific names: Find organisms using binomial nomenclature (e.g., Homo sapiens)
Common/vernacular names: Search using everyday names (e.g., "human", "oak tree")
Taxonomic Serial Number (TSN): Retrieve specific organisms via unique identifiers
Kingdom filtering: Explore organisms within Animalia, Plantae, Fungi, or Bacteria
Taxonomic rank: Filter by Species, Genus, Family, Order, Class, Phylum, or Kingdom
Autocomplete: Get suggestions for partial scientific name inputs
Custom SOLR queries: Execute flexible searches with parameters, filters, sorting, and pagination
Data Retrieval:
Taxonomic hierarchies: Get complete classification chains for organisms
Taxonomic relationships: Explore related organisms (siblings, family, order, class levels)
Random species discovery: Find random organisms with optional taxonomic filtering
Database statistics: Access total records and database metrics
Pagination support: Browse large result sets efficiently
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ITIS MCP Serversearch for Homo sapiens by scientific name"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ITIS MCP Server
A Model Context Protocol (MCP) server for interacting with the ITIS (Integrated Taxonomic Information System) database via their SOLR API.
Overview
This MCP server provides access to the ITIS database, which contains taxonomic information for hundreds of thousands of species. It uses the ITIS SOLR API to perform searches and retrieve taxonomic data.
Related MCP server: Typesense MCP Server
Features
Natural Language Answers: Use specialized tools and prompts to answer everyday questions like "where do polar bears live?" or "what's related to the elephant?"
Search by Scientific Name: Find organisms by their scientific names
Search by Vernacular/Common Names: Find organisms by their common names (e.g., "human", "dog", "oak tree")
Search by TSN: Look up organisms by their Taxonomic Serial Number
Search by Kingdom: Find organisms within specific kingdoms
Search by Taxonomic Rank: Search for organisms of specific ranks
Autocomplete Search: Get suggestions for partial scientific names
Hierarchical Data: Retrieve complete taxonomic hierarchies
Geographic Information: See where species are found
General SOLR Search: Perform flexible searches with custom SOLR queries
Random Species Discovery: Get random species from any taxonomic group with flexible filtering
Statistics: Get database statistics
Usage
As an MCP Server
The server communicates via stdin/stdout and can be used with MCP-compatible clients.
To run the server:
npm startFor development:
npm run devNatural Language Questions
This server includes special prompts and tools to easily answer common layperson questions:
"Tell me about the Komodo Dragon" -> Uses the
species_profileprompt andget_full_species_profiletool"Where do polar bears live?" -> Uses the
where_does_it_liveprompt andget_geographic_infotool"What are the relatives of the Elephant?" -> Uses the
animal_relativesprompt andfind_relativestool"What species are in the cat family?" -> Uses the
whats_in_this_groupprompt andget_childrentool"How are dogs and wolves related?" -> Uses the
compare_animalsprompt
MCP Client Configuration
After building the project, add this configuration to your MCP client:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"itis": {
"command": "npx",
"args": ["-y", "path/to/itis-mcp"]
}
}
}Cursor/Other MCP Clients:
{
"command": "npx",
"args": ["-y", "path/to/itis-mcp"]
}Available Tools
1. search_itis
General SOLR search with flexible parameters.
2. search_by_scientific_name
Search for organisms by scientific name.
3. search_by_common_name
Search for organisms by their everyday common names (e.g., "dog", "elephant"). This is usually what lay users want when they ask about an animal or plant.
4. search_by_tsn
Search by Taxonomic Serial Number.
5. search_by_kingdom
Search within a specific kingdom.
6. search_by_rank
Search by taxonomic rank.
7. get_hierarchy
Get taxonomic hierarchy for a TSN.
8. autocomplete_search
Autocomplete search for partial names.
9. get_random_species
Get random species with optional taxonomic filters.
10. find_relatives
Show relatives of a specific animal or plant. Accepts common or scientific names.
11. get_children
Find all species contained within a larger taxonomic group (e.g., "Felidae").
12. get_geographic_info
Find out where an organism lives (geographic divisions). Accepts common or scientific names.
13. get_full_species_profile
Get a comprehensive profile including hierarchy, geography, and synonyms in one go.
14. explore_taxonomy
Explore taxonomic relationships by finding related organisms at different taxonomic levels.
15. get_statistics
Get database statistics.
Example Queries
Here are some example queries you can use:
Search for Humans by Scientific Name
{
"tool": "search_by_scientific_name",
"arguments": {
"name": "Homo sapiens"
}
}Search for Cougars by Common Name
{
"tool": "search_by_vernacular_name",
"arguments": {
"vernacularName": "cougar"
}
}Search for Plants
{
"tool": "search_by_kingdom",
"arguments": {
"kingdom": "Plantae",
"rows": 5
}
}Autocomplete for Oak Trees
{
"tool": "autocomplete_search",
"arguments": {
"partialName": "Quercus"
}
}Get Random Birds
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Animalia",
"class": "Aves",
"count": 3,
"requireVernacular": true
}
}Get Random Mammals from Carnivora
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Animalia",
"class": "Mammalia",
"order": "Carnivora",
"count": 2,
"requireVernacular": true
}
}Intelligent Creature Discovery
{
"prompt": "random_creature_discovery",
"arguments": {
"creature_type": "big cats",
"count": 3
}
}Discover Sea Birds
{
"prompt": "random_creature_discovery",
"arguments": {
"creature_type": "sea birds",
"count": 2,
"focus_area": "diving birds"
}
}Get Random Plants
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Plantae",
"count": 2,
"requireVernacular": true
}
}Custom SOLR Query
{
"tool": "search_itis",
"arguments": {
"query": "nameWInd:*tiger* AND kingdom:Animalia",
"rows": 10,
"sort": "nameWInd asc"
}
}ITIS Database Fields
The ITIS database contains many fields. Here are the most commonly used ones:
tsn: Taxonomic Serial Number (unique identifier)nameWInd: Scientific name with indicatorskingdom: Kingdom namephylum: Phylum nameclass: Class nameorder: Order namefamily: Family namegenus: Genus namespecies: Species nameauthor: Author citationrank: Taxonomic rankusage: Usage status (valid, invalid, etc.)credibilityRating: Data quality ratingphyloSort: Phylogenetic sort order
SOLR Query Examples
The ITIS SOLR API supports various query types:
Exact match:
nameWInd:"Homo sapiens"Wildcard:
nameWInd:Homo*Range:
tsn:[1 TO 1000]Boolean:
kingdom:Animalia AND rank:SpeciesPhrase:
nameWInd:"oak tree"
Configuration
The server uses the official ITIS SOLR endpoint:
https://services.itis.gov/
No API key is required as the ITIS database is publicly accessible.
Error Handling
The server includes comprehensive error handling:
Network errors are caught and reported
Invalid queries return helpful error messages
Malformed responses are handled gracefully
Contributing
Feel free to submit issues and enhancement requests!
License
MIT License
References
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/knustx/itis-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server