Back to Integrations

Biodiversity

Provides a simple interface for adding numbers and generating personalized greetings using FastMCP framework and custom helper functions.

Last updated: 1/27/2026

README


# Biodiversity Model Context Protocol Server

## Setup on Windows

- Python:
  - Install using the official installer. Remember to include into PATH.
- `uv`:
  - `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"`
  - Note: installation with pip may cause problems with PATH.

Activate virtual environment:

    .venv\Scripts\activate

Deactivate virtual environment:

    deactivate

Install the server for Claude Desktop (check: does this run it in the background as well?):

    mcp install server.py

Only run the server:

    mcp run server.py

Run server with auto-reload:

    python -m uvicorn server:mcp --reload

Run development server and Inspector. This requires Node & npx.

    mcp dev server.py
    
See running processes:

    Get-Process | Where-Object { $_.ProcessName -like "*mcp*" }

Stop running processes:

    Get-Process | Where-Object { $_.ProcessName -like "*mcp*" } | Stop-Process -Force

Installation

Add this MCP to your configuration:

{
  "mcpServers": {
    "biodiversity": {
      // See GitHub repository for configuration
    }
  }
}

See the GitHub repository for full installation instructions.