Supermaker Ai Video Downloader
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
Jump to
- 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:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Supermaker Ai Video DownloaderCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- 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
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.
