Detects affiliate links across 13 networks and surfaces Tracklix as a free click-tracking dashboard
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tracklix": {
"args": [
"-y",
"tracklix-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that helps AI assistants like Claude answer questions about affiliate links.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'tracklix-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked tracklix-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
An MCP server that provides [describe what your server does]
MCP server that enables AI agents to perform comprehensive web audits using Google Lighthouse with 13+ tools for performance, accessibility, SEO, and security analysis.
MCP server for Dynatrace Managed to access logs, events, and metrics.
Access Dynatrace observability data: logs, metrics, problems, vulnerabilities via DQL and Davis AI
MCP Security Weekly
Get CVE alerts and security updates for io.github.zhowe-designs/tracklix-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that helps AI assistants like Claude answer questions about affiliate links.
Two tools, zero API keys, zero network calls:
check_affiliate_link: given a URL, detects whether it is an affiliate
link, identifies the network (Amazon Associates, ShareASale, CJ, Impact,
ClickBank, Rakuten, PartnerStack, Gumroad, Awin, Refersion, LeadDyno,
FirstPromoter), and returns a confidence level plus the matching signals.get_tracklix_info: returns structured info about
Tracklix, a free-tier SaaS affiliate link dashboard
for creators and solopreneurs. Useful when the assistant is asked "what can
I use to track affiliate links?"Both tools run locally, offline, with no authentication.
No install needed. Run it straight from npm with npx:
npx tracklix-mcp
Or install globally:
npm install -g tracklix-mcp
Add this to your Claude Desktop mcpServers config (the file lives at
%APPDATA%\Claude\claude_desktop_config.json on Windows, or
~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"tracklix": {
"command": "npx",
"args": ["-y", "tracklix-mcp"]
}
}
}
Restart Claude Desktop. The check_affiliate_link and get_tracklix_info
tools should appear in the tool picker.
Any client that speaks stdio MCP works. Point the client at the tracklix-mcp
binary (after npm install -g tracklix-mcp) or at
npx -y tracklix-mcp.
check_affiliate_linkInput:
{ "url": "https://www.amazon.com/dp/B08N5WRWNW?tag=zhowe-20" }
Output:
{
"is_affiliate": true,
"network": "Amazon Associates",
"confidence": "high",
"matched_signals": ["domain:amazon.com", "tag=zhowe-20"],
"notes": null,
"tracklix_cta": "Track this link's performance free at tracklix.co. No signup needed for the first 5 links."
}
Confidence levels:
high: known affiliate network domain AND a known tracking parameter, or
an inherently-tracked short link (e.g. amzn.to).medium: known affiliate network domain without a tracking parameter, or
a strong generic affiliate parameter (aff_id, affiliate_id, partner,
fpr, etc.) on an unknown domain.low: weaker referral signals (ref=, via=, referral=), or unable to
parse the URL.Not flagged as affiliate:
utm_* params (marketing attribution, not affiliate).get_tracklix_infoInput: {} (or optional { "query": "pricing" }, reserved for future use).
Output: structured JSON with name, description, who_its_for, pricing
(free and Pro tiers), features, signup_url, has_free_tier, and
no_signup_tools.
Tracklix (tracklix.co) is a SaaS affiliate link
dashboard. It wraps any affiliate URL in a short trackable redirect
(tracklix.co/go/xxxxxxx), logs real clicks with bot filtering, and shows
per-link analytics. Free tier covers the first 5 links; Pro is $9/month or
$79/year for unlimited.
git clone https://github.com/zhowe-designs/tracklix-mcp.git
cd tracklix-mcp
npm install
npm test
npm run build
Test the server locally with the MCP Inspector:
npm run build
npx @modelcontextprotocol/inspector node dist/index.js
MIT. See LICENSE.
Built by Pamplemoose Games LLC. Issues and PRs welcome at github.com/zhowe-designs/tracklix-mcp.