Token导航 LogoToken导航TokenDH.com
MCP ofx logo
开发工具stdio官方级别未说明来源级核验

MCP ofx

MCP Server

一个提供OpenFX SDK全面访问的MCP服务器,用于视觉特效插件开发。

工具数

12

提示词数

0

GitHub Stars

2

资源数

0
Python代码生成API访问

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

VFX-Tools-LLC

提供方

VFX-Tools-LLC

最后核验

2026/5/17 20:20

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install mcp-ofx

详细介绍

MCP OFX-OpenFX SDK服务器

一个模型上下文协议(MCP)服务器,提供对OpenFX(OFX)SDK的全面访问,用于视觉效果插件开发。

概述

此MCP服务器公开整个OpenFX SDK API,使其易于:

  • 查找任何OFX常量、动作、属性或套件
  • 按关键字搜索API
  • 获取有关上下文、参数类型和主机兼容性的详细信息
  • 生成完整的插件骨架代码
  • 了解插件的动作调用顺序

安装

pip install mcp-ofx

或者从源代码安装:

git clone https://github.com/mcp-ofx/mcp-ofx
cd mcp-ofx
pip install -e .

用法

作为MCP服务器

添加到MCP客户端配置中:

{
  "mcpServers": {
    "ofx": {
      "command": "mcp-ofx"
    }
  }
}

可用工具

ofx_lookup

按确切名称查找OFX定义。

ofx_lookup("kOfxStatOK")
ofx_lookup("kOfxActionDescribe")
ofx_lookup("kOfxParamTypeDouble")

ofx_search

按关键字搜索定义。

ofx_search("render")
ofx_search("clip", category="image_effect_actions")

ofx_list_category

列出类别中的所有定义。

类别: status_codes, core_actions, image_effect_actions, contexts, param_types, bit_depths, image_components, field_types, premult_states, thread_safety, change_reasons, suites, standard_clips, standard_params, gpu_properties, type_identifiers, data_structures, exported_functions

ofx_get_actions

获取所有OFX操作及其详细信息。

ofx_action_sequence

获取插件的典型动作调用序列。

ofx_get_suite

获取OFX套件的详细信息,包括其所有功能。

ofx_get_suite("kOfxPropertySuite")
ofx_get_suite("kOfxImageEffectSuite")

ofx_get_context

获取有关图像效果上下文的详细信息。

ofx_get_context("kOfxImageEffectContextFilter")
ofx_get_context("kOfxImageEffectContextTransition")

ofx_get_param_type

获取参数类型的详细信息。

ofx_get_param_type("kOfxParamTypeDouble")
ofx_get_param_type("kOfxParamTypeChoice")

ofx_host_compatibility

获取特定主机的兼容性信息。

ofx_host_compatibility("DaVinci Resolve")
ofx_host_compatibility("Nuke")

ofx_generate_plugin

生成一个完整的插件框架。

ofx_generate_plugin(
    plugin_name="My Blur",
    plugin_id="com.mycompany.myblur",
    context="kOfxImageEffectContextFilter",
    params=[
        {"name": "radius", "type": "kOfxParamTypeDouble", "default": 5.0, "min": 0, "max": 100}
    ],
    supports_gpu=True
)

ofx_generate_param

为单个参数定义生成代码。

ofx_summary

获取OFX SDK结构的摘要。

OFX SDK版本

此服务器基于 OpenFX 1.5 (2024年12月)来自学院软件基金会。

支持的主机

  • 达芬奇调色
  • Nuke(参考实施)
  • 融合
  • 拉斯维加斯职业
  • 还有更多。..

资源

许可证

MIT许可证

目录标签

目录标签

Python代码生成API访问视觉特效本地部署插件开发SDK

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

12

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP