io.github.AdonaiVera/fiftyone-mcp-server

平台与服务

by adonaivera

通过 AI assistant 使用 80 多个操作符控制 FiftyOne 计算机视觉数据集,提升分析与管理效率。

什么是 io.github.AdonaiVera/fiftyone-mcp-server

通过 AI assistant 使用 80 多个操作符控制 FiftyOne 计算机视觉数据集,提升分析与管理效率。

README

FiftyOne MCP Server

<!-- mcp-name: io.github.voxel51/fiftyone-mcp-server --> <div align="center"> <p align="center"> <!-- prettier-ignore -->

<img src="https://user-images.githubusercontent.com/25985824/106288517-2422e000-6216-11eb-871d-26ad2e7b1e59.png" height="55px">   <img src="https://user-images.githubusercontent.com/25985824/106288518-24bb7680-6216-11eb-8f10-60052c519586.png" height="50px">

</p>

Control FiftyOne datasets through AI assistants using the Model Context Protocol

License PyPI Python

Discord Hugging Face Voxel51 Blog Newsletter LinkedIn Twitter Medium

Documentation · FiftyOne Skills · FiftyOne Plugins · Discord

</div>

What is the FiftyOne MCP Server?

Enable Agents to explore datasets, execute operators, and control the FiftyOne App through natural language. This server exposes 45+ MCP tools across data operations, App UI control, and the full operator/plugin ecosystem.

code
"List all my datasets"
"Load quickstart dataset and show summary"
"Find similar images in my dataset"

The server starts with 50 built-in operators. Install plugins to expand functionality - the AI can discover and install plugins automatically when needed (brain, zoo, annotation, evaluation, and more).

Available Tools

CategoryToolsDescription
📊 Dataset Management3List, load, and summarize datasets
🎯 App Operations29Control the App UI (views, panels, selection, ...)
Operator System3Discover and execute any FiftyOne operator
🔄 Pipelines2Run pipelines and manage delegated operations
🔌 Plugin Management5Discover, install, and manage plugins
🖥️ Session1Launch the FiftyOne App server
📈 Aggregations8Count, distinct, bounds, mean, histogram, ...
🧬 Samples5Add, tag, untag, and set values on samples
🗂️ Schema2Inspect and modify dataset field schemas
🎨 App Config6Color scheme, sidebar groups, active fields

Tool modes

45+ tools organized by runtime mode:

  • SDK: Data operations that work everywhere (datasets, aggregations, schema, samples, operators, plugins). No App connection needed.
  • APP: Controls the FiftyOne App UI in real time (set_view, open_panel, notify, select_samples, reload, and 25+ more). Requires a connected browser via ctx.ops.
  • SESSION: Bootstrap tools for starting a local App server (launch_app). Used from terminal environments.

Choosing your tools

Which tools are available depends on how you integrate the server:

IntegrationModesUse case
FiftyOne App pluginapp + sdkAgent panel inside the App (full UI control + data operations)
Terminal / CLIsession + sdkHeadless agent (launch the App, query data, execute operators)

Tool risk levels

Every tool is tagged with a risk level that your agent can use for auto-approval decisions:

  • LOW Safe to auto-execute without prompting (read-only queries, UI state changes)
  • OPERATOR Wraps a FiftyOne operator whose own severity should be checked before executing

Quick Start

Step 1: Install the MCP Server

bash
pip install fiftyone-mcp-server

⚠️ Important: Make sure to use the same Python environment where you installed the MCP server when configuring your AI tool. If you installed it in a virtual environment or conda environment, you must activate that environment or specify the full path to the executable.

Step 2: Configure Your AI Tool

<details> <summary><b>Claude Code</b> (Recommended)</summary>
bash
claude mcp add fiftyone -- fiftyone-mcp
</details> <details> <summary><b>Claude Desktop</b></summary>

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

json
{
  "mcpServers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}
</details> <details> <summary><b>Cursor</b></summary>

Install in Cursor

Add to ~/.cursor/mcp.json:

json
{
  "mcpServers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}
</details> <details> <summary><b>VSCode</b></summary>

Install in VS Code

Add to .vscode/mcp.json:

json
{
  "servers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}
</details> <details> <summary><b>ChatGPT Desktop</b></summary>

Edit ~/Library/Application Support/ChatGPT/config.json:

json
{
  "mcpServers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}
</details> <details> <summary><b>uvx (No Install Needed)</b></summary>

If you have uv installed:

json
{
  "mcpServers": {
    "fiftyone": {
      "command": "uvx",
      "args": ["fiftyone-mcp-server"]
    }
  }
}

This downloads and runs the latest version automatically.

</details>

Step 3: Use It

code
"List all my datasets"
"Load quickstart dataset and show summary"
"Open the map panel and show me the embeddings"
"Select samples with confidence above 0.9"
"What plugins are available? Install the brain plugin"
"Find near-duplicate images in my dataset"

Claude will automatically discover operators and execute the appropriate tools.

Contributing

We welcome contributions! Here's how to set up a local development environment:

  1. Clone the repository

    bash
    git clone https://github.com/voxel51/fiftyone-mcp-server.git
    cd fiftyone-mcp-server
    
  2. Install dependencies

    bash
    poetry install
    
  3. Run the server locally

    bash
    poetry run fiftyone-mcp
    
  4. Test your changes

    bash
    poetry run pytest
    poetry run black -l 79 src/
    npx @modelcontextprotocol/inspector poetry run fiftyone-mcp
    
  5. Submit a Pull Request

Resources

ResourceDescription
FiftyOne DocsOfficial documentation
FiftyOne SkillsExpert workflows for AI assistants
FiftyOne PluginsOfficial plugin collection
Model Context ProtocolMCP specification
PyPI PackageMCP server on PyPI
Discord CommunityGet help and share ideas

Community

Join the FiftyOne community to get help, share your ideas, and connect with other users:


<div align="center">

Copyright 2017-2026, Voxel51, Inc. · Apache 2.0 License

</div>

常见问题

io.github.AdonaiVera/fiftyone-mcp-server 是什么?

通过 AI assistant 使用 80 多个操作符控制 FiftyOne 计算机视觉数据集,提升分析与管理效率。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.8k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.8k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.8k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.9k

评论