ITIS MCP Server
ITIS MCP 서버
SOLR API를 통해 ITIS(통합 분류 정보 시스템) 데이터베이스와 상호 작용하기 위한 MCP(Model Context Protocol) 서버입니다.
개요
이 MCP 서버는 수십만 종의 분류 정보를 포함하는 ITIS 데이터베이스에 대한 액세스를 제공합니다. ITIS SOLR API를 사용하여 검색을 수행하고 분류 데이터를 검색합니다.
Related MCP server: biothings-mcp
기능
자연어 답변: "북극곰은 어디에 사나요?" 또는 "코끼리와 관련된 것은 무엇인가요?"와 같은 일상적인 질문에 답하기 위해 특수 도구와 프롬프트를 사용합니다.
학명으로 검색: 학명으로 생물을 찾습니다.
속명/일반명으로 검색: 일반적인 이름(예: "사람", "개", "참나무")으로 생물을 찾습니다.
TSN으로 검색: 분류 일련 번호(Taxonomic Serial Number)로 생물을 찾습니다.
계(Kingdom)별 검색: 특정 계 내의 생물을 찾습니다.
분류 계급별 검색: 특정 계급의 생물을 검색합니다.
자동 완성 검색: 부분적인 학명에 대한 제안을 받습니다.
계층적 데이터: 전체 분류 계층을 검색합니다.
지리 정보: 종이 어디에서 발견되는지 확인합니다.
일반 SOLR 검색: 사용자 지정 SOLR 쿼리로 유연한 검색을 수행합니다.
무작위 종 발견: 유연한 필터링을 통해 모든 분류군에서 무작위 종을 가져옵니다.
통계: 데이터베이스 통계를 가져옵니다.
사용법
MCP 서버로서
이 서버는 stdin/stdout을 통해 통신하며 MCP 호환 클라이언트와 함께 사용할 수 있습니다.
서버 실행 방법:
npm start개발용:
npm run dev자연어 질문
이 서버에는 일반인의 질문에 쉽게 답할 수 있는 특별한 프롬프트와 도구가 포함되어 있습니다:
"코모도왕도마뱀에 대해 알려줘" ->
species_profile프롬프트와get_full_species_profile도구 사용"북극곰은 어디에 사나요?" ->
where_does_it_live프롬프트와get_geographic_info도구 사용"코끼리의 친척은 무엇인가요?" ->
animal_relatives프롬프트와find_relatives도구 사용"고양이과에는 어떤 종이 있나요?" ->
whats_in_this_group프롬프트와get_children도구 사용"개와 늑대는 어떤 관계인가요?" ->
compare_animals프롬프트 사용
MCP 클라이언트 구성
프로젝트를 빌드한 후, MCP 클라이언트에 다음 구성을 추가하세요:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"itis": {
"command": "npx",
"args": ["-y", "path/to/itis-mcp"]
}
}
}Cursor/기타 MCP 클라이언트:
{
"command": "npx",
"args": ["-y", "path/to/itis-mcp"]
}사용 가능한 도구
1. search_itis
유연한 매개변수를 사용한 일반 SOLR 검색.
2. search_by_scientific_name
학명으로 생물 검색.
3. search_by_common_name
일상적인 일반명(예: "개", "코끼리")으로 생물 검색. 일반 사용자가 동물이나 식물에 대해 질문할 때 주로 사용하는 방식입니다.
4. search_by_tsn
분류 일련 번호(TSN)로 검색.
5. search_by_kingdom
특정 계 내에서 검색.
6. search_by_rank
분류 계급별 검색.
7. get_hierarchy
TSN에 대한 분류 계층 가져오기.
8. autocomplete_search
부분 이름에 대한 자동 완성 검색.
9. get_random_species
선택적 분류 필터를 사용하여 무작위 종 가져오기.
10. find_relatives
특정 동물이나 식물의 친척 표시. 일반명 또는 학명 허용.
11. get_children
더 큰 분류군(예: "고양이과") 내에 포함된 모든 종 찾기.
12. get_geographic_info
생물이 어디에 사는지(지리적 구분) 확인. 일반명 또는 학명 허용.
13. get_full_species_profile
계층, 지리, 동의어를 포함한 포괄적인 프로필을 한 번에 가져오기.
14. explore_taxonomy
다양한 분류 수준에서 관련 생물을 찾아 분류 관계 탐색.
15. get_statistics
데이터베이스 통계 가져오기.
쿼리 예시
사용할 수 있는 몇 가지 쿼리 예시는 다음과 같습니다:
학명으로 인간 검색
{
"tool": "search_by_scientific_name",
"arguments": {
"name": "Homo sapiens"
}
}일반명으로 쿠거 검색
{
"tool": "search_by_vernacular_name",
"arguments": {
"vernacularName": "cougar"
}
}식물 검색
{
"tool": "search_by_kingdom",
"arguments": {
"kingdom": "Plantae",
"rows": 5
}
}참나무 자동 완성
{
"tool": "autocomplete_search",
"arguments": {
"partialName": "Quercus"
}
}무작위 조류 가져오기
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Animalia",
"class": "Aves",
"count": 3,
"requireVernacular": true
}
}식육목에서 무작위 포유류 가져오기
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Animalia",
"class": "Mammalia",
"order": "Carnivora",
"count": 2,
"requireVernacular": true
}
}지능형 생물 발견
{
"prompt": "random_creature_discovery",
"arguments": {
"creature_type": "big cats",
"count": 3
}
}바닷새 발견
{
"prompt": "random_creature_discovery",
"arguments": {
"creature_type": "sea birds",
"count": 2,
"focus_area": "diving birds"
}
}무작위 식물 가져오기
{
"tool": "get_random_species",
"arguments": {
"kingdom": "Plantae",
"count": 2,
"requireVernacular": true
}
}사용자 지정 SOLR 쿼리
{
"tool": "search_itis",
"arguments": {
"query": "nameWInd:*tiger* AND kingdom:Animalia",
"rows": 10,
"sort": "nameWInd asc"
}
}ITIS 데이터베이스 필드
ITIS 데이터베이스에는 많은 필드가 포함되어 있습니다. 가장 일반적으로 사용되는 필드는 다음과 같습니다:
tsn: 분류 일련 번호(고유 식별자)nameWInd: 지표가 포함된 학명kingdom: 계 이름phylum: 문 이름class: 강 이름order: 목 이름family: 과 이름genus: 속 이름species: 종 이름author: 저자 인용rank: 분류 계급usage: 사용 상태(유효, 무효 등)credibilityRating: 데이터 품질 등급phyloSort: 계통 분류 정렬 순서
SOLR 쿼리 예시
ITIS SOLR API는 다양한 쿼리 유형을 지원합니다:
정확히 일치:
nameWInd:"Homo sapiens"와일드카드:
nameWInd:Homo*범위:
tsn:[1 TO 1000]불리언:
kingdom:Animalia AND rank:Species구문:
nameWInd:"oak tree"
구성
이 서버는 공식 ITIS SOLR 엔드포인트를 사용합니다:
https://services.itis.gov/
ITIS 데이터베이스는 공개적으로 액세스할 수 있으므로 API 키가 필요하지 않습니다.
오류 처리
이 서버에는 포괄적인 오류 처리가 포함되어 있습니다:
네트워크 오류가 포착되고 보고됨
잘못된 쿼리는 유용한 오류 메시지를 반환함
잘못된 형식의 응답은 적절하게 처리됨
기여
문제 제기 및 개선 요청을 자유롭게 해주세요!
라이선스
MIT 라이선스
참조
Available Tools
11 toolsautocomplete_searchC
Search for organisms with autocomplete functionality using partial names.
| Name | Required | Description | Default |
|---|---|---|---|
| partialName | Yes | Partial scientific name for autocomplete (e.g., "Homo", "Quer") | |
| rows | No | Number of results to return (default: 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'autocomplete functionality' and 'partial names,' implying a fuzzy search, but doesn't describe key behaviors like response format, error handling, rate limits, or authentication needs. For a search tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary details. It avoids redundancy and wastes no words, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a search tool with no annotations and no output schema, the description is incomplete. It lacks details on what the tool returns (e.g., list of organisms with IDs), how results are ordered, or any limitations. This makes it inadequate for an AI agent to fully understand the tool's behavior and output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with clear descriptions for both parameters (partialName and rows). The description adds minimal value beyond the schema, as it only reiterates 'partial names' without providing additional context like examples beyond those in the schema or usage nuances. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for organisms with autocomplete functionality using partial names.' It specifies the verb ('Search'), resource ('organisms'), and key functionality ('autocomplete'), distinguishing it from sibling tools like search_by_scientific_name or search_by_vernacular_name. However, it doesn't explicitly differentiate from all siblings, such as explore_taxonomy, which might also involve searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'autocomplete functionality' but doesn't specify scenarios (e.g., for quick suggestions during user input) or exclusions (e.g., not for exact matches). With multiple search-related siblings like search_by_scientific_name, the lack of comparative context leaves usage ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
explore_taxonomyC
Explore taxonomic relationships by finding related organisms at different taxonomic levels.
| Name | Required | Description | Default |
|---|---|---|---|
| scientificName | Yes | Scientific name to explore (e.g., "Homo sapiens") | |
| level | Yes | Taxonomic level to explore: "siblings" (same genus), "family" (same family), "order" (same order), "class" (same class) | |
| rows | No | Number of results to return (default: 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It mentions 'finding related organisms' but lacks details on permissions, rate limits, data sources, or response format (e.g., list of species with attributes). For a tool with 3 parameters and no output schema, this leaves significant gaps in understanding how it behaves and what to expect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Explore taxonomic relationships') and adds key context ('by finding related organisms at different taxonomic levels'). There is zero waste, and every word contributes to understanding the tool's function, making it appropriately sized and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, no annotations, no output schema), the description is incomplete. It lacks behavioral details (e.g., what 'related organisms' means in practice), usage guidelines, and output expectations. While concise, it doesn't provide enough context for an agent to fully understand how to invoke and interpret results, especially without structured support from annotations or output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no additional meaning beyond the schema's details (e.g., it doesn't explain how 'level' affects results or provide examples beyond the enum). With high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Explore taxonomic relationships by finding related organisms at different taxonomic levels.' It specifies the verb ('explore') and resource ('taxonomic relationships'), and distinguishes it from siblings like 'get_hierarchy' or 'search_by_scientific_name' by focusing on related organisms rather than hierarchical or search functions. However, it doesn't explicitly contrast with all siblings (e.g., 'search_by_rank'), keeping it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions 'different taxonomic levels' but doesn't specify contexts or exclusions, such as when to prefer 'get_hierarchy' for full lineage or 'search_by_rank' for broader queries. Without explicit when/when-not instructions or named alternatives, it offers minimal usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_hierarchyC
Get the complete taxonomic hierarchy for a given TSN.
| Name | Required | Description | Default |
|---|---|---|---|
| tsn | Yes | Taxonomic Serial Number (TSN) to get hierarchy for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't describe behavioral traits such as whether it's read-only, potential rate limits, error handling, or the format of the returned hierarchy. For a tool with no annotations, this leaves significant gaps in understanding its operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with every part contributing to clarity. There's no waste or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a taxonomic hierarchy tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the output looks like (e.g., structure, fields), potential limitations, or how it integrates with sibling tools. For a tool that likely returns structured data, more context is needed to be fully helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds minimal meaning beyond the input schema, which has 100% coverage and clearly defines the 'tsn' parameter. It implies the parameter is required but doesn't provide additional context like TSN format examples or constraints. With high schema coverage, the baseline is 3, and the description doesn't significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and the resource ('complete taxonomic hierarchy') with a specific input requirement ('for a given TSN'). It distinguishes from siblings like 'search_by_tsn' by focusing on hierarchy retrieval rather than search, though it doesn't explicitly mention this distinction. The purpose is specific but could be slightly more differentiated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose it over siblings like 'search_by_tsn' or 'explore_taxonomy', nor does it specify prerequisites or exclusions. Usage is implied by the name and description alone, with no explicit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_random_speciesC
Get random species from ITIS database with optional taxonomic filters.
| Name | Required | Description | Default |
|---|---|---|---|
| kingdom | No | Kingdom filter (e.g., "Animalia", "Plantae", "Fungi") | |
| phylum | No | Phylum filter (e.g., "Chordata", "Arthropoda") | |
| class | No | Class filter (e.g., "Mammalia", "Aves", "Reptilia") | |
| order | No | Order filter (e.g., "Carnivora", "Primates") | |
| family | No | Family filter (e.g., "Felidae", "Canidae") | |
| genus | No | Genus filter (e.g., "Panthera", "Canis") | |
| count | No | Number of random species to return (default: 1, max: 10) | |
| requireVernacular | No | Only return species that have common names (default: false) | |
| vernacularLanguage | No | Language for vernacular names (default: "English"). Other options: "French", "Spanish", etc. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'random species' and 'optional taxonomic filters' but doesn't describe what 'random' means (uniform distribution? seeded?), whether results are reproducible, rate limits, authentication requirements, or what format the species data returns. For a tool with 9 parameters and no annotation coverage, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core functionality ('Get random species') followed by key constraint ('from ITIS database') and important feature ('with optional taxonomic filters'). Every word earns its place with zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 9 parameters, no annotations, and no output schema, the description is inadequate. It doesn't explain what 'random' means operationally, what data fields are returned, whether results are paginated, or any behavioral constraints. The single sentence leaves too many questions unanswered for proper agent usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 9 parameters thoroughly. The description adds minimal value beyond what's in the schema - it mentions 'optional taxonomic filters' which aligns with the schema's taxonomic parameters, but doesn't provide additional semantic context. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and resource 'random species from ITIS database', making the purpose evident. It distinguishes itself from siblings by focusing on random selection rather than search or exploration functions. However, it doesn't explicitly contrast with all siblings like 'get_statistics' which might also retrieve species data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions 'optional taxonomic filters' which implies some context for usage, but provides no explicit guidance on when to use this tool versus alternatives like 'search_by_scientific_name' or 'search_by_vernacular_name'. There's no mention of when random sampling is preferable to targeted searches.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_statisticsB
Get basic statistics about the ITIS database (total number of records).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a read operation ('Get'), implying it's non-destructive, but doesn't mention any behavioral traits like rate limits, authentication needs, response format, or whether it's real-time vs cached data. This is a significant gap for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any fluff. It's front-loaded with the core action and resource, making it easy to parse. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 0 parameters, no annotations, and no output schema, the description is minimally adequate. It explains what the tool does but lacks details on behavioral context, output format, or usage scenarios. For a simple read tool, this might suffice, but it leaves gaps in understanding how to interpret results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100%, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, and the baseline for this scenario is 4, as it avoids unnecessary details while being complete for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and resource ('basic statistics about the ITIS database'), specifying it returns 'total number of records'. However, it doesn't explicitly differentiate this from sibling tools like 'search_itis' or 'explore_taxonomy', which might also provide statistical insights.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description mentions 'basic statistics' but doesn't clarify if this is for summary overviews, how it differs from search tools, or any prerequisites. This leaves the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_kingdomB
Search for organisms within a specific kingdom in ITIS database.
| Name | Required | Description | Default |
|---|---|---|---|
| kingdom | Yes | Kingdom name (e.g., "Animalia", "Plantae", "Fungi", "Bacteria") | |
| rows | No | Number of results to return (default: 10) | |
| start | No | Starting index for pagination (default: 0) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'search' but doesn't describe what the search returns (e.g., list of organisms, taxonomic details), whether it's paginated (though the schema hints at this), error handling, or rate limits. For a search tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the tool's purpose clearly without unnecessary words. It's appropriately sized and front-loaded, with every part of the sentence contributing essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (search with pagination), no annotations, and no output schema, the description is minimally adequate. It covers the basic purpose but lacks details on behavioral traits, output format, and usage guidelines. With schema coverage at 100%, the input parameters are well-documented, but the overall context remains incomplete for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters (kingdom, rows, start) with descriptions and defaults. The description adds no additional parameter semantics beyond what's in the schema. According to the rules, with high schema coverage (>80%), the baseline is 3 even with no param info in the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for organisms within a specific kingdom in ITIS database.' It specifies the verb ('search'), resource ('organisms'), and scope ('within a specific kingdom in ITIS database'). However, it doesn't explicitly distinguish this tool from sibling tools like 'search_by_rank' or 'search_itis', which likely have overlapping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'search_by_rank' or 'search_itis', nor does it specify prerequisites or exclusions. The context is implied (searching by kingdom), but no explicit usage guidelines are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_rankB
Search for organisms by their taxonomic rank in ITIS database.
| Name | Required | Description | Default |
|---|---|---|---|
| rank | Yes | Taxonomic rank (e.g., "Species", "Genus", "Family", "Order", "Class", "Phylum", "Kingdom") | |
| rows | No | Number of results to return (default: 10) | |
| start | No | Starting index for pagination (default: 0) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions searching in the 'ITIS database', which implies a read-only operation, but doesn't detail aspects like rate limits, authentication needs, error handling, or what the search results entail (e.g., format, fields). For a search tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence: 'Search for organisms by their taxonomic rank in ITIS database.' It is front-loaded with the core purpose, has no unnecessary words, and earns its place by clearly stating the tool's function. This is an excellent example of conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does but lacks details on behavioral traits, usage context, and result handling. Without an output schema, it doesn't explain return values, which could be a gap. However, it covers the basic purpose, making it just sufficient for a simple search operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear explanations for 'rank', 'rows', and 'start'. The description adds no additional parameter semantics beyond what the schema provides, such as examples of valid ranks or pagination behavior. Given the high schema coverage, a baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for organisms by their taxonomic rank in ITIS database.' It specifies the verb ('Search'), resource ('organisms'), and constraint ('by their taxonomic rank'), which is specific and actionable. However, it doesn't explicitly differentiate from sibling tools like 'search_by_kingdom' or 'search_by_scientific_name', which also search the ITIS database but by different criteria, so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools such as 'search_by_kingdom' or 'search_by_scientific_name', nor does it specify scenarios where taxonomic rank-based search is preferred over other search methods. Without this context, users might struggle to choose the right tool for their needs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_scientific_nameC
Search for organisms by their scientific name in ITIS database.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Scientific name to search for (e.g., "Homo sapiens", "Quercus") | |
| rows | No | Number of results to return (default: 10) | |
| start | No | Starting index for pagination (default: 0) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It only states what the tool does at a high level, without mentioning rate limits, authentication needs, error conditions, pagination behavior beyond the parameters, or what the search returns (e.g., partial matches, exact matches). This is inadequate for a search tool with multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a straightforward search tool and front-loads the core purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the search returns (e.g., taxonomic details, match types), error handling, or limitations. For a search tool with three parameters and multiple sibling alternatives, this leaves significant gaps in understanding how to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with all parameters well-documented in the schema itself. The description doesn't add any meaningful parameter semantics beyond what's already in the schema (e.g., it doesn't clarify search behavior like case sensitivity or wildcard support). Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Search for') and resource ('organisms by their scientific name in ITIS database'), making the purpose immediately understandable. However, it doesn't distinguish this tool from sibling tools like 'search_by_vernacular_name' or 'search_itis', which appear to be related search functions in the same database.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'search_by_vernacular_name', 'search_by_kingdom', or 'search_itis'. It doesn't mention prerequisites, limitations, or comparative use cases, leaving the agent to guess based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_tsnC
Search for organisms by their Taxonomic Serial Number (TSN) in ITIS database.
| Name | Required | Description | Default |
|---|---|---|---|
| tsn | Yes | Taxonomic Serial Number (TSN) to search for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a search operation but doesn't describe what kind of results to expect, whether it's paginated, if there are rate limits, authentication requirements, or error conditions. For a search tool with zero annotation coverage, this leaves significant behavioral questions unanswered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the essential purpose without any wasted words. It's appropriately sized for a single-parameter search tool and gets straight to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with no annotations and no output schema, the description is insufficiently complete. It doesn't describe what the search returns (organism details? taxonomy hierarchy? just existence?), nor does it address common search considerations like partial matches, case sensitivity, or error handling for invalid TSNs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'tsn' fully documented in the schema. The description doesn't add any additional parameter semantics beyond what the schema already provides (that it searches by TSN), so it meets the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Search for organisms') and the resource ('by their Taxonomic Serial Number (TSN) in ITIS database'), making the purpose immediately understandable. However, it doesn't differentiate this tool from its many siblings (like 'search_by_scientific_name' or 'search_itis'), which would require a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. With multiple search-related sibling tools available, there's no indication of when TSN-based searching is appropriate versus other search methods like by name, kingdom, or rank.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_vernacular_nameC
Search for organisms by their common/vernacular names in ITIS database.
| Name | Required | Description | Default |
|---|---|---|---|
| vernacularName | Yes | Common/vernacular name to search for (e.g., "human", "dog", "oak tree") | |
| rows | No | Number of results to return (default: 10) | |
| start | No | Starting index for pagination (default: 0) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions searching in the ITIS database but doesn't disclose behavioral traits like whether it's read-only, potential rate limits, authentication needs, or what the output looks like (e.g., format, pagination details). For a search tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. It's appropriately sized for a simple search tool, with zero waste or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (search with pagination), lack of annotations, and no output schema, the description is incomplete. It doesn't explain return values, error handling, or behavioral context, leaving gaps for an AI agent to understand how to use it effectively beyond basic input.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters (vernacularName, rows, start) with clear descriptions. The description adds no additional parameter semantics beyond what's in the schema, such as examples or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for organisms by their common/vernacular names in ITIS database.' It specifies the verb ('Search'), resource ('organisms'), and scope ('ITIS database'), distinguishing it from siblings like search_by_scientific_name. However, it doesn't explicitly differentiate from search_itis or autocomplete_search, which might also involve searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to prefer this over search_by_scientific_name or other search siblings, nor does it specify prerequisites or exclusions. Usage is implied by the name but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_itisC
Search ITIS database using SOLR queries. Supports general search with flexible query parameters.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | SOLR query string (e.g., "nameWInd:Homo*", "kingdom:Plantae", or "*:*" for all) | |
| start | No | Starting index for pagination (default: 0) | |
| rows | No | Number of results to return (default: 10, max: 100) | |
| sort | No | Sort order (e.g., "nameWInd asc", "tsn desc") | |
| fields | No | Specific fields to return (default: all available fields) | |
| filters | No | Additional filters as key-value pairs (e.g., {"kingdom": "Animalia", "rank": "Species"}) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'flexible query parameters' and 'general search,' but fails to describe critical behaviors: it doesn't specify if this is a read-only operation, what the output format looks like (especially without an output schema), potential rate limits, authentication needs, or error handling. For a search tool with 6 parameters and no annotations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences that efficiently state the tool's function and key feature ('flexible query parameters'). There's no unnecessary repetition or fluff, and it's front-loaded with the core purpose. However, it could be slightly more structured by explicitly mentioning it's a general-purpose search compared to siblings.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (6 parameters, nested objects, no output schema, and no annotations), the description is incomplete. It doesn't explain the return format, error conditions, or how results are structured, which is critical for a search tool. Without annotations or output schema, the agent lacks guidance on what to expect, making it inadequate for informed tool selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds minimal value beyond the input schema, which has 100% coverage with detailed parameter descriptions. It vaguely references 'flexible query parameters' but doesn't explain how parameters interact (e.g., that 'filters' might override parts of 'query') or provide usage examples beyond what's in the schema. Since schema coverage is high, the baseline is 3, and the description doesn't significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search ITIS database using SOLR queries.' It specifies the verb ('Search'), resource ('ITIS database'), and method ('SOLR queries'), making it easy to understand what the tool does. However, it doesn't explicitly differentiate from sibling tools like 'search_by_scientific_name' or 'search_by_kingdom', which are more specific search methods.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal usage guidance with 'Supports general search with flexible query parameters,' implying this is a broad, flexible tool. However, it doesn't specify when to use this tool versus more targeted sibling tools (e.g., 'search_by_scientific_name' for exact matches or 'search_by_kingdom' for kingdom-based searches), nor does it mention exclusions or prerequisites. This lack of explicit comparison leaves the agent guessing about the best tool choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v1.0.0- Added
get_random_species - Added
search_by_vernacular_name
9 tool updates
- First observed
autocomplete_search - First observed
explore_taxonomy - First observed
get_hierarchy - First observed
get_statistics - First observed
search_by_kingdom - First observed
search_by_rank - First observed
search_by_scientific_name - First observed
search_by_tsn - First observed
search_itis
TDQS
Scored across 11 tools
Most tools have distinct purposes, such as autocomplete_search for partial name matching and get_hierarchy for taxonomic relationships. However, search_by_scientific_name and search_itis could be confusing as both handle scientific name queries, though search_itis offers more flexibility with SOLR parameters.
All tool names follow a consistent snake_case pattern with clear verb_noun structures, such as autocomplete_search and search_by_scientific_name. This uniformity makes the tool set predictable and easy to navigate for an agent.
With 11 tools, the server is well-scoped for an ITIS database interface, covering diverse search methods and taxonomic exploration without being overwhelming. Each tool serves a specific function, such as get_random_species for discovery and get_statistics for metadata.
The tool set provides comprehensive search capabilities across various criteria like name, rank, and TSN, along with taxonomic exploration. A minor gap exists in update or data modification tools, but this is reasonable for a read-focused database server, and agents can still perform most queries effectively.
Maintenance
Related MCP Connectors
ITIS (Integrated Taxonomic Information System) MCP.
Search GBIF species taxonomy, occurrence records, datasets, and publishers.
Search GBIF species taxonomy, occurrence records, datasets, and publishers.
O*NET MCP — wraps the O*NET Web Services (US DOL) occupation taxonomy
Related MCP Servers
- FlicenseBqualityDmaintenanceA production-ready Model Context Protocol (MCP) server that provides comprehensive access to the BioOntology API for searching, annotating, and exploring over 1,200 biological ontologies.109-
- AlicenseAqualityFmaintenanceProvides a Model Context Protocol server for accessing and querying biomedical data from BioThings services, including gene, variant, chemical, and taxon annotations.1934MIT
- AlicenseNot gradedqualityCmaintenanceEnables queries about global taxonomic data, including scientific name matching, classification chains, common names, and synonyms from the Catalogue of Life index.2 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables searching and retrieving taxonomic information from the Encyclopedia of Life, including taxon pages, scientific names, and hierarchical classifications.1 npmMIT