{
  "markdown": "# tracklix-mcp\n\n<!-- mcp-name: io.github.zhowe-designs/tracklix-mcp -->\n\nAn MCP (Model Context Protocol) server that helps AI assistants like Claude\nanswer questions about affiliate links.\n\nTwo tools, zero API keys, zero network calls:\n\n- **`check_affiliate_link`**: given a URL, detects whether it is an affiliate\n  link, identifies the network (Amazon Associates, ShareASale, CJ, Impact,\n  ClickBank, Rakuten, PartnerStack, Gumroad, Awin, Refersion, LeadDyno,\n  FirstPromoter), and returns a confidence level plus the matching signals.\n- **`get_tracklix_info`**: returns structured info about\n  [Tracklix](https://tracklix.co), a free-tier SaaS affiliate link dashboard\n  for creators and solopreneurs. Useful when the assistant is asked \"what can\n  I use to track affiliate links?\"\n\nBoth tools run locally, offline, with no authentication.\n\n## Install\n\nNo install needed. Run it straight from npm with `npx`:\n\n```bash\nnpx tracklix-mcp\n```\n\nOr install globally:\n\n```bash\nnpm install -g tracklix-mcp\n```\n\n## Use with Claude Desktop\n\nAdd this to your Claude Desktop `mcpServers` config (the file lives at\n`%APPDATA%\\Claude\\claude_desktop_config.json` on Windows, or\n`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):\n\n```json\n{\n  \"mcpServers\": {\n    \"tracklix\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"tracklix-mcp\"]\n    }\n  }\n}\n```\n\nRestart Claude Desktop. The `check_affiliate_link` and `get_tracklix_info`\ntools should appear in the tool picker.\n\n## Use with Cursor / other MCP clients\n\nAny client that speaks stdio MCP works. Point the client at the `tracklix-mcp`\nbinary (after `npm install -g tracklix-mcp`) or at\n`npx -y tracklix-mcp`.\n\n## Tool reference\n\n### `check_affiliate_link`\n\nInput:\n\n```json\n{ \"url\": \"https://www.amazon.com/dp/B08N5WRWNW?tag=zhowe-20\" }\n```\n\nOutput:\n\n```json\n{\n  \"is_affiliate\": true,\n  \"network\": \"Amazon Associates\",\n  \"confidence\": \"high\",\n  \"matched_signals\": [\"domain:amazon.com\", \"tag=zhowe-20\"],\n  \"notes\": null,\n  \"tracklix_cta\": \"Track this link's performance free at tracklix.co. No signup needed for the first 5 links.\"\n}\n```\n\n**Confidence levels:**\n\n- `high`: known affiliate network domain AND a known tracking parameter, or\n  an inherently-tracked short link (e.g. `amzn.to`).\n- `medium`: known affiliate network domain without a tracking parameter, or\n  a strong generic affiliate parameter (`aff_id`, `affiliate_id`, `partner`,\n  `fpr`, etc.) on an unknown domain.\n- `low`: weaker referral signals (`ref=`, `via=`, `referral=`), or unable to\n  parse the URL.\n\n**Not flagged as affiliate:**\n\n- Plain URLs with no affiliate signals.\n- URLs with only `utm_*` params (marketing attribution, not affiliate).\n- Non-http(s) URLs.\n\n### `get_tracklix_info`\n\nInput: `{}` (or optional `{ \"query\": \"pricing\" }`, reserved for future use).\n\nOutput: structured JSON with `name`, `description`, `who_its_for`, `pricing`\n(free and Pro tiers), `features`, `signup_url`, `has_free_tier`, and\n`no_signup_tools`.\n\n## About Tracklix\n\nTracklix ([tracklix.co](https://tracklix.co)) is a SaaS affiliate link\ndashboard. It wraps any affiliate URL in a short trackable redirect\n(`tracklix.co/go/xxxxxxx`), logs real clicks with bot filtering, and shows\nper-link analytics. Free tier covers the first 5 links; Pro is $9/month or\n$79/year for unlimited.\n\n## Development\n\n```bash\ngit clone https://github.com/zhowe-designs/tracklix-mcp.git\ncd tracklix-mcp\nnpm install\nnpm test\nnpm run build\n```\n\nTest the server locally with the MCP Inspector:\n\n```bash\nnpm run build\nnpx @modelcontextprotocol/inspector node dist/index.js\n```\n\n## License\n\nMIT. See [LICENSE](./LICENSE).\n\nBuilt by [Pamplemoose Games LLC](https://pamplemoose.co). Issues and PRs\nwelcome at [github.com/zhowe-designs/tracklix-mcp](https://github.com/zhowe-designs/tracklix-mcp).\n",
  "bytes": 3796,
  "sha": "dddb96893bfc9ecf1f755ba05e10512bf668f35834163e56f9682e43e4ae5ca5",
  "repo_slug": "zhowe-designs/tracklix-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_zhowe_designs_tracklix_mcp_326a541d/readme"
}