Integrate your brand data directly into your IDE using the Model Context Protocol (MCP).
The Model Context Protocol (MCP) allows your IDE to access your brand data in real-time. This means you can:
Follow these steps to integrate BrandFolio with Visual Studio Code.
Install the official Model Context Protocol extension from the VS Code marketplace.
ext install anthropic.mcpUse the URL provided in Step 6 of the onboarding process. If you're here from Step 6, that's the URL you just saw!
Open your VS Code settings (JSON) and add the MCP server configuration:
{
"mcp.servers": {
"brandfolio": {
"url": "YOUR_MCP_SERVER_URL_HERE",
"name": "BrandFolio",
"description": "Brand data and guidelines"
}
}
}Replace YOUR_MCP_SERVER_URL_HERE with your actual MCP URL from Step 6.
Close and reopen VS Code to load the MCP server configuration.
Open the MCP panel in VS Code and verify that "BrandFolio" appears in the list of connected servers.
Your MCP server provides access to the following brand data endpoints:
/api/mcp/brandComplete brand data (all sections combined)
/api/mcp/colorsBrand color palette with CSS variables
/api/mcp/typographyFont settings with Google Fonts URL
/api/mcp/voiceBrand voice and tone guidelines
/api/mcp/identityBrand identity and personality information
/api/mcp/uiUI component settings with CSS variables
Make sure you've added the server configuration to your IDE settings and restarted the IDE.
Verify that your MCP token is correctly copied in the server URL. The token should be in the format: ?token=your-token-here
Currently, MCP URLs cannot be regenerated. Please contact support if you've lost your URL.