Skip to main content

Usage

anaconda-mcp discover [OPTIONS]

Description

Lists all MCP servers available in the current conda environment and the tools they expose. Useful for verifying which servers are installed and what tools are available to your AI assistant, and for scripting or automation workflows.
Output reflects the MCP servers installed in your current conda environment and will vary depending on which packages are installed.

Options

Examples

Discover servers in the current environment
anaconda-mcp discover
Sample output:
Discovered MCP Servers:
  ✓ conda_environments (v1.0.0)
    - Tools: list_environments, create_environment, delete_environment
    - Resources: environment_info
Output as JSON
anaconda-mcp discover --output-format json
Sample output:
{
  "servers": [
    {
      "name": "conda_environments",
      "version": "1.0.0",
      "tools": [
        "list_environments",
        "create_environment",
        "delete_environment"
      ],
      "resources": ["environment_info"]
    }
  ]
}
Save output to a file
anaconda-mcp discover --output-format json > servers.json