# nature-vision-mcp [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/fonkychen/nature-vision-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/nature-vision-mcp

## Description
Identifies biological species, returning Latin names with confidence scores.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "nature-vision-mcp": {
    "command": "npx",
    "args": ["-y","nature-vision-mcp"]
  }
}
```

## Documentation & README

\# Nature Vision MCP Server



An \*\*MCP (Model Context Protocol) server\*\* that identifies biological species from images using the \*\*Nature Vision API\*\*, returning Latin names with confidence scores.  

This server enables LLMs (such as Claude) to recognize species and enrich responses with biological knowledge.



---



\## Features



\- 🌿 Identify species from images (plants, animals, fungi, insects, etc.)

\- 🧬 Returns \*\*Latin scientific names\*\* with confidence scores

\- 🧠 Designed for \*\*LLM tool usage\*\* via Model Context Protocol (MCP)

\- 🔌 Simple stdio-based MCP server

\- 🚀 Easy to run with `npx`

\- 🔐 API key via environment variables



---



\## Supported Categories



\- `plant`

\- `bug`

\- `bird`

\- `mammal`

\- `reptile`

\- `amphibian`

\- `mollusc`

\- `fungi`



---



\## Installation



```bash

npm install 

```



\*\*Configure in your MCP client:\*\*

```json

{
  "mcp.servers": {
    "nature-vision": {
      "command": "npx",
      "args": ["-y", "nature-vision-mcp"],
      "env": {
        "NATURE_VISION_API_KEY": "app-xxx"
      }
    }
  }
}


```

For now, you can use token: app-dummy-token-2026, this will allow you request once per minute. 
```
"NATURE_VISION_API_KEY": "app-dummy-token-2026"
```



```bash

npx nature-vision-mcp




