Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-pixeltable

该项目为Pixeltable的多模态模型上下文协议服务器集合,提供音频、视频、图像和文档的索引与查询服务,支持Docker本地部署。

article

README

🚀 多模态模型上下文协议服务器

本项目仓库包含了一组 Pixeltable 的服务器实现,主要用于处理音频、视频、图像和文档等多模态数据的索引与查询。这些服务可借助 Docker 进行本地开发,为多模态数据的处理提供了便捷的解决方案。

🚀 快速开始

可用服务器

本项目提供了多种类型的服务器,每种服务器都有其特定的功能和访问端点:

  • 音频索引服务器:位于 servers/audio-index/,提供音频文件索引与转录功能、音频内容的语义搜索、多索引支持音频集合,可通过 /audio 端点访问。
  • 视频索引服务器:位于 servers/video-index/,提供视频文件索引与帧提取、基于内容的视频搜索,可通过 /video 端点访问。
  • 图像索引服务器:位于 servers/image-index/,提供图像索引与目标检测、图像相似性搜索,可通过 /image 端点访问。
  • 文档索引服务器:位于 servers/doc-index/,提供文档索引与文本提取、增强检索(RAG)支持,可通过 /doc 端点访问。
  • 基础 SDK 服务器:位于 servers/base-sdk/,提供 Pixeltable 集成的核心功能,是专用服务器构建的基础。

📦 安装指南

本地开发

你可以按照以下步骤在本地进行开发:

pip install pixeltable
git clone https://github.com/pixeltable/mcp-server-pixeltable.git

cd mcp-server-pixeltable/servers

docker-compose up --build                 # 使用 docker-compose 本地运行
docker-compose down                       # 释放资源

🔧 技术细节

配置

每个服务都运行在指定端口,具体如下:

  • 音频服务:8080
  • 视频服务:8081
  • 图像服务:8082
  • 文档服务:8083

你可以在相应的 Dockerfile 中或者通过环境变量来配置服务设置。

🔗 链接

📞 支持

📄 许可证

本项目采用 Apache 2.0 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client