golpo-mcp

golpo-mcp

MCP server for the Golpo AI video API, enabling video generation, listing, and downloading from any MCP-compatible client.

Category
访问服务器

README

golpo-mcp

CI License: MIT Python 3.10+ PyPI

Model Context Protocol server for the Golpo AI video API. Generate, list, and download Golpo videos from any MCP-compatible client — Claude Desktop, Claude Code, Cursor, Continue, Zed, Windsurf, or your own.

👋 End-user, not a developer? Read the friendly walk-through: Use Golpo from your favorite AI tool — step-by-step setup for Cursor, Claude Code, VS Code, Claude Desktop, and Visual Studio with troubleshooting and sample prompts.

What it does

Wraps the Golpo Video API as a set of MCP tools so an LLM (or any MCP client) can generate and manage videos directly. Same underlying API as the Golpo Claude Code skill; this is the broader-reach packaging.

Install

Run-without-install (recommended)

If you have uv:

uvx golpo-mcp

uvx downloads the package on first run, caches it, and re-uses the cache on subsequent calls.

Install into your environment

pip install golpo-mcp
# or
uv pip install golpo-mcp

Then run with golpo-mcp or python -m golpo_mcp.

From source (for development)

git clone https://github.com/Golpo-AI/golpo-mcp.git
cd golpo-mcp
uv sync                  # or: pip install -e .[dev]
uv run python -m golpo_mcp

Configure your MCP client

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "golpo": {
      "command": "uvx",
      "args": ["golpo-mcp"],
      "env": {
        "GOLPO_API_KEY": "your-key-here"
      }
    }
  }
}

Restart Claude Desktop after editing. The 6 Golpo tools appear in the tools menu.

Claude Code

claude mcp add --transport stdio --scope user \
  --env GOLPO_API_KEY=your-key-here \
  golpo -- uvx golpo-mcp

Or by editing ~/.claude.json directly:

{
  "mcpServers": {
    "golpo": {
      "command": "uvx",
      "args": ["golpo-mcp"],
      "env": { "GOLPO_API_KEY": "your-key" }
    }
  }
}

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "golpo": {
      "command": "uvx",
      "args": ["golpo-mcp"],
      "env": { "GOLPO_API_KEY": "your-key" }
    }
  }
}

Any other MCP client

Use the same shape. The server speaks stdio MCP — no special transport.

API key

Resolution order:

  1. GOLPO_API_KEY env var (preferred in client configs above)
  2. ~/.golpo/api_key file with mode 0600

The file location is shared with the Golpo Claude Code skill, so users who already have that skill authenticated don't need to re-enter the key.

How to get a key

API access is gated behind specific Golpo plans. Three options:

  • Scale ($999.99/mo) — platform + API, 800 video minutes/month included
  • Business + API add-on ($499.99/mo Business + $200/mo add-on)
  • API-Only — usage-based with $200/mo minimum (recommended for MCP/Claude/Cursor users per Golpo's own guide)

Find the Create API Key button:

Full plan + pricing detail: How to Get Golpo AI API Access.

Tool catalog (v0.1.0)

Tool What it does
generate_video Submit a job (prompt / script / audio / docs), poll until done, optionally download the MP4. Returns {job_id, video_id, video_url, video_file, status, params_used}.
upload_file Upload an audio / document / image (≤ 15 MB). Two-step: multipart POST + S3 PUT. Returns {file_url, …}. Pass file_url into generate_video.
list_videos List the caller's recent videos. Args: limit, offset.
get_video Fetch metadata for one video; optionally re-download the MP4. Args: video_id, download, output_dir.
check_status One-shot status check on an in-flight job_id.
status Diagnostic: report whether an API key is configured and which source (env / file / none). Doesn't return the key.

Every tool returns a JSON-serializable dict. Errors come back as {error: "...", message: "..."} instead of crashing the server.

Examples

In a client connected to the server, an LLM might call:

// Plain prompt, auto-download
generate_video({ "prompt": "Why is the sky blue?", "timing": "0.5" })

// Custom script + Canvas Sharpie + stylus cursor
generate_video({
  "prompt": "Photosynthesis explained simply",
  "new_script": "Plants are nature's solar panels...",
  "use_2_0_style": true,
  "image_style": "marker",
  "pen_style": "stylus",
  "timing": "0.5"
})

// Two-step upload + generate from PDF
upload_file({ "path": "/Users/me/report.pdf" })
// -> { "file_url": "https://...", ... }
generate_video({
  "prompt": "Summarize this report",
  "upload_urls": ["https://..."],
  "timing": "1"
})

// Power-user escape hatch — pass arbitrary fields not in the signature
generate_video({
  "prompt": "Branded promo",
  "extra_params": { "logo": "https://...", "logo_placement": "tr" }
})

Where downloaded videos go

Default: ~/Golpo/videos/. Filename pattern:

YYYYMMDD-HHMMSS_<title-slug>_<video-id-short>.mp4

Override per call with output_dir, or globally with GOLPO_VIDEO_DIR env var. Pass no_download=True to skip.

Visual styles cheat sheet

Golpo Sketch (use_lineart_2_style):

Value Style
false Classic (default)
true Improved (BETA)
advanced Formal
whiteboard Dry Erase
modern_minimal Professional Clean
storytelling Crayon

Golpo Canvas (use_2_0_style: true, image_style):

Value Style
chalkboard_white Chalkboard (B/W, default)
neon Chalkboard Color
whiteboard Whiteboard
modern_minimal Modern Minimal
playful Playful
technical Technical
editorial Editorial
marker Sharpie

Canvas-only pen cursors: pen_style = none | stylus | marker | pen.

Sketch and Canvas are mutually exclusive — pick one engine per video.

Voices, languages, music

  • Voices (style): solo-female-3 (default), solo-female-4, solo-male-3, solo-male-4.
  • Languages (language): 44+ codes — en, hi, es, fr, de, pt, ja, zh, ar, bn, ta, ur, …
  • Background music (bg_music): jazz, lofi, whimsical, dramatic, engaging, hyper, inspirational, documentary.

Canvas additionally supports display_language for separating narration language from on-screen text language.

Architecture

src/golpo_mcp/
├── __init__.py    # __version__
├── __main__.py    # entry point (`golpo-mcp` console script)
├── server.py      # FastMCP instance + @mcp.tool() decorators
├── client.py      # Golpo HTTP client (pure functions, no MCP)
├── auth.py        # API key resolution
└── downloads.py   # MP4 streaming + filename slug logic

The package is layered:

  • client.py is a usable Golpo Python client on its own — import golpo_mcp.client and call functions directly without MCP.
  • server.py is a thin MCP wrapper around client.py.
  • Adding a new tool: drop a @mcp.tool() function into server.py. Type annotations become JSON Schema automatically.

Extending: adding new tools

# in server.py

@mcp.tool()
def my_new_tool(arg1: str, arg2: int = 42) -> dict:
    """Docstring becomes the tool description seen by the LLM."""
    try:
        return {"ok": True, "echoed": arg1, "n": arg2}
    except Exception as e:
        return _error(e)

That's it — the server picks it up at import time. Add a row to the tool catalog table in this README and ship.

Pricing

Golpo API: $1 = 1 credit, 2 credits per minute of generated video. Minimum $200 entry on the API tier. Billing happens server-side; check usage at video.golpoai.com.

Related

  • Golpo Claude Code skill — the Claude-Code-specific packaging (uses the same auth file).
  • Golpo Video API docs — https://video.golpoai.com/api-docs/endpoints/v1
  • Payload examples — https://video.golpoai.com/guide/golpo-ai-video-api-payload-examples
  • MCP spec — https://modelcontextprotocol.io

License

MIT.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选
mcp-server-qdrant

mcp-server-qdrant

这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。

官方
精选