Getting Started
Guides
REST API: Campaigns
Affiliates
Conversions
Affiliate Teams
SCALE
Coupons
Payouts
Other
Webhooks
VS Code supports remote MCP servers. Add the hosted endpoint with your API key header to mcp.json and skip the npm install entirely. Keys come from linkjolt.io/merchant/api-keys.
{
"servers": {
"linkjolt": {
"type": "http",
"url": "https://www.linkjolt.io/api/mcp",
"headers": {
"Authorization": "Bearer lj_pk_your_key"
}
}
}
}Click the "Install in VS Code" button above. VS Code will prompt you to confirm the MCP server configuration. Replace the placeholder API key with yours after install.
Open the Command Palette (Cmd/Ctrl+Shift+P) → "MCP: Add Server" → choose "stdio" → paste the command below. Alternatively, edit `.vscode/mcp.json` in your workspace or the user-level `mcp.json` directly.
{
"servers": {
"linkjolt": {
"command": "npx",
"args": ["-y", "@linkjolt/mcp-server"],
"env": {
"LINKJOLT_API_KEY": "lj_pk_your_key_here"
}
}
}
}Open Copilot Chat, switch to "Agent" mode. The LinkJolt tools appear alongside your other MCP servers. Get an API key at linkjolt.io/merchant/api-keys and paste into the config.
Once connected, ask VS Code natural language questions about your affiliate program:
Official VS Code MCP docs
https://code.visualstudio.com/docs/copilot/customization/mcp-servers