b2brilliant-mcp-server
v1.0.0
Published
MCP Server for B2Brilliant Campaign Agent API
Readme
B2Brilliant MCP Server
Model Context Protocol (MCP) server for the B2Brilliant Campaign Agent API.
Quick Start
Set your API key:
export B2BRILLIANT_API_KEY=your_api_key_hereInstall dependencies:
npm installBuild and run:
npm run build npm start
Available Tools
User Business Tools
discover_user_business- Analyze your business from website URLsrefine_user_business- Refine your business information with feedback
Target Business Tools
discover_business- Analyze target business from website URLsrefine_business- Refine target business information with feedbackcheck_compatibility- Assess compatibility between businesses
Campaign Tools
create_campaign- Generate marketing campaigns for target businessrefine_campaign- Improve campaigns based on feedback
Configuration
The server requires a B2Brilliant API key set as an environment variable:
export B2BRILLIANT_API_KEY=your_api_key_hereGet your API key from the B2Brilliant Dashboard.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"b2brilliant": {
"command": "node",
"args": ["path/to/pkg/mcp/build/index.js"],
"env": {
"B2BRILLIANT_API_KEY": "your_api_key_here"
}
}
}
}Example Workflow
Discover your business:
Use discover_user_business with your website URLFind target business:
Use discover_business with target company URLCheck compatibility:
Use check_compatibility with both business objectsCreate campaign:
Use create_campaign to generate personalized outreach
