For the complete documentation index, see llms.txt. This page is also available as Markdown.

MCP for VS Code

Install impact.com MCP in VS Code.

The impact.com MCP Server integrates directly with Visual Studio Code, giving you AI-powered access to your partnership data without leaving your editor. Choose between a one-click install or manual configuration.

One-click install

Select this link: [Coming soon!]

  • VS Code will open and confirm the server.

  • On first use, VS Code will ask for a Client ID.

    • Paste: [Coming soon!]

    • After entering the MCP details, you may be asked for an optional secret. Press enter to leave it blank and continue with the authentication process.

  • Sign in with your impact.com account.

To learn more, see the VS Code MCP documentation.

Manual configuration

Add this to .vscode/mcp.json in your workspace:

{
  "servers": {
    "impact": {
      "type": "http",
      "url": "https://mcp.impact.com/mcp",
      "headers": {
        "Authorization": "Bearer ${IMPACT_AUTH_TOKEN}"
      }
    }
  }
}

Replace ${IMPACT_AUTH_TOKEN} with your actual impact.com API token or set it as an environment variable. Never commit credentials to version control.

Last updated