Supermaker Ai Video Downloader

by qianyue2504

262 downloads
Not rated
GitHub

Description

# SuperMaker AI Video Downloader (PHP) Build tagged links and embeddable HTML that point to https://supermaker.ai/video/. ## Install ```bash composer require supermaker/ai-video-downloader ``` ## Usage ```php <?php require 'vendor/autoload.php'; use…

About

# SuperMaker AI Video Downloader (PHP) Build tagged links and embeddable HTML that point to https://supermaker.ai/video/. ## Install ```bash composer require supermaker/ai-video-downloader ``` ## Usage ```php <?php require 'vendor/autoload.php'; use SuperMaker\AiVideoDownloader\Backlinks; $url = Backlinks::buildLink([…

Details

Author
qianyue2504
Downloads
262
Categories
Media

- Generate URLs with UTM source, medium, and campaign.
- Create fully formatted <a> tags with custom text, rel, target, and class.
- Supports a configurable base path (default /video/).
- Simple static methods: buildLink() and generateAnchor().
- Returns strings ready for embedding in PHP views.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Supermaker Ai Video Downloader
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via Composer: composer require supermaker/ai-video-downloader. Then use the Backlinks class to build a URL or HTML anchor with optional UTM parameters and HTML attributes.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "supermaker ai video downloader": {
            "github": {
                "command": "docker",
                "args": [
                    "run",
                    "-i",
                    "--rm",
                    "-e",
                    "GITHUB_PERSONAL_ACCESS_TOKEN",
                    "mcp/github"
                ],
                "env": {
                    "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
                }
            }
        }
    }
}

McpServers

{
    "github": {
        "command": "docker",
        "args": [
            "run",
            "-i",
            "--rm",
            "-e",
            "GITHUB_PERSONAL_ACCESS_TOKEN",
            "mcp/github"
        ],
        "env": {
            "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
        }
    }
}

SuperMaker AI Video Downloader (PHP)

Build tagged links and embeddable HTML that point to https://supermaker.ai/video/.

Install

composer require supermaker/ai-video-downloader

Usage

<?php
require 'vendor/autoload.php';

use SuperMaker\AiVideoDownloader\Backlinks;

$url = Backlinks::buildLink([
'utm_source' => 'blog',
'utm_medium' => 'banner',
'utm_campaign' => 'video',
// default path is /video/, override if needed:
// 'path' => Backlinks::defaultPath(),
]);

$html = Backlinks::generateAnchor([
'text' => 'SuperMaker AI Video Downloader',
'rel' => 'sponsored noopener',
'utm' => ['utm_source' => 'blog'],
]);

API

- Backlinks::buildLink(array $options = []) → URL string. Supports utm_source, utm_medium, utm_campaign, path (default /video/). - Backlinks::generateAnchor(array $options = []) → HTML <a>. Supports text, rel, target, class, utm, path. - Backlinks::defaultPath() => /video/.

Develop / Test

composer install
composer test
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.