AgentHubAgentHub

ozor

MCP ServerMCP Registry官方收录

io.github.Mintii-Labs/ozor · v2.0.1

Generate AI videos from a prompt or document (PDF/PPTX/DOCX/URL) and export shareable MP4s.

概览

ozor 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "ozor": {
      "command": "npx",
      "args": [
        "-y",
        "ozor-mcp-server"
      ],
      "env": {
        "OZOR_API_KEY": "<OZOR_API_KEY>"
      }
    }
  }
}

环境变量

OZOR_API_KEY必填secret

Your Ozor API key (sk_live_...). Create one at https://ozor.ai under Settings → API Keys.

OZOR_BASE_URL可选

Override the Ozor API base URL (defaults to https://ozor.ai). Useful for staging.

相关资源

统一 Manifest

{
  "id": "io.github.Mintii-Labs/ozor",
  "type": "mcp-server",
  "version": "2.0.1",
  "displayName": "ozor",
  "description": "Generate AI videos from a prompt or document (PDF/PPTX/DOCX/URL) and export shareable MP4s.",
  "repository": {
    "url": "https://github.com/Mintii-Labs/ozor-MCP",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "ozor-mcp-server",
        "version": "2.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "OZOR_API_KEY",
            "description": "Your Ozor API key (sk_live_...). Create one at https://ozor.ai under Settings → API Keys.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "OZOR_BASE_URL",
            "description": "Override the Ozor API base URL (defaults to https://ozor.ai). Useful for staging."
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://mcp.ozor.ai/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Mintii-Labs/ozor",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Mintii-Labs%2Fozor/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ozor — MCP Server 安装与配置 · AgentHub