The LinkJolt MCP server uses standard stdio transport and is compatible with any Model Context Protocol client. This includes Zed, Continue, Sourcegraph Cody, Taskade Genesis, custom agents, or your own integration.
Install the npm package globally, or use npx to run it on demand.
# Global install
npm install -g @linkjolt/mcp-server
# Or run via npx (no install)
npx -y @linkjolt/mcp-serverGenerate a key at linkjolt.io/merchant/api-keys. Pro plan = read-only access, Ultimate = full read + write.
Most MCP clients accept a JSON config. Use stdio transport with the config below. Adjust paths/env keys to match your client's format.
{
"mcpServers": {
"linkjolt": {
"command": "npx",
"args": ["-y", "@linkjolt/mcp-server"],
"env": {
"LINKJOLT_API_KEY": "lj_pk_your_key_here"
}
}
}
}The server exposes 7 tools (list_campaigns, get_campaign, list_affiliates, list_conversions, get_stats, create_conversion, update_conversion). Your client should list them once connected.
Once connected, ask your client natural language questions about your affiliate program:
Official your client MCP docs
https://modelcontextprotocol.io/clients