Browse documentation
bbradar Pro guide
Connect bbradar to AI tools with MCP
Install the bbradar MCP server and use program opportunities, target intelligence, and Pro data in a compatible AI client.
10 min read
Prerequisites
- Active bbradar Pro access
- A bbradar Pro API key
- Node.js 20 or newer
- An MCP client that supports local STDIO servers
The @bbradar/mcp package runs locally on your computer. It talks to the bbradar Pro API using your key and exposes structured tools to your MCP client.
Check Node.js and run once
node --version
npx -y @bbradar/mcpCreate an API key
- 1
Open Account & Billing
Find the Pro API key card. - 2
Create the key
Select Create API key. Each account has one active personal key. - 3
Copy it immediately
The completebbr_livesecret is shown only once. Store it in your MCP client environment.
Sanitized product view
Your API key is ready
This secret is shown once.
bbr_live_demo_••••••••••••••••••••1
Store it in your client environment, then close this dialog.
Install in your MCP client
- 1
Choose the matching client section
Use the exact command or configuration shape for Codex, Claude Code, OpenCode, or your generic MCP client. - 2
Insert your API key
ReplaceYOUR_BBRADAR_API_KEYlocally. Do not paste the key into a prompt or share the finished configuration. - 3
Add or save the server
Run the CLI command, or save the JSON in the configuration file used by your client. - 4
Restart the client
Most clients load local STDIO server configuration only during startup.
Codex CLI
Terminal
codex mcp add bbradar_io --env BBRADAR_API_KEY="YOUR_BBRADAR_API_KEY" -- npx -y @bbradar/mcpClaude Code
Terminal
claude mcp add bbradar_io --scope user --env BBRADAR_API_KEY="YOUR_BBRADAR_API_KEY" -- npx -y @bbradar/mcpOpenCode
Add the local server to your OpenCode configuration:
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"bbradar.io": {
"type": "local",
"command": ["npx", "-y", "@bbradar/mcp"],
"enabled": true,
"timeout": 30000,
"environment": {
"BBRADAR_API_KEY": "YOUR_BBRADAR_API_KEY"
}
}
}
}Generic JSON configuration
MCP client configuration
{
"mcpServers": {
"bbradar.io": {
"command": "npx",
"args": ["-y", "@bbradar/mcp"],
"env": {
"BBRADAR_API_KEY": "YOUR_BBRADAR_API_KEY"
}
}
}
}Verify the connection
- 1
Restart or reload your MCP client
Clients normally read local server configuration at startup. - 2
Run get_mcp_status
Confirm the server is connected, authentication is valid, and Pro access is active. - 3
Run get_bbradar_guide
Use the built-in guide to discover the available bbradar tools and their parameters. - 4
Try a narrow query
Ask for a small program or opportunity result before requesting large target or change feeds.
Sanitized product view
MCP client
$ get_mcp_status
server bbradar_io
status connected
access pro
tools programs, opportunities, targets, target_changes
Authentication verified 1
Available data and limitations
- Data
- Programs
- Available through MCP
- Yes
- Notes
- Paginated Pro program data, filters, and available program dupe-risk context.
- Data
- Opportunity tiers
- Available through MCP
- Yes
- Notes
- Elite, Hot, Strong, and Potential programs with the score factors and reason returned by the API.
- Data
- Program targets
- Available through MCP
- Yes
- Notes
- Active target identities with Target Opportunity Score, label, breakdown, dupe risk, and Why This Target when available.
- Data
- Target changes
- Available through MCP
- Yes
- Notes
- Paginated material changes with the same target-intelligence fields.
- Data
- Repository changes
- Available through MCP
- No
- Notes
- Use the Commits tab and Telegram repository stream instead.
| Data | Available through MCP | Notes |
|---|---|---|
| Programs | Yes | Paginated Pro program data, filters, and available program dupe-risk context. |
| Opportunity tiers | Yes | Elite, Hot, Strong, and Potential programs with the score factors and reason returned by the API. |
| Program targets | Yes | Active target identities with Target Opportunity Score, label, breakdown, dupe risk, and Why This Target when available. |
| Target changes | Yes | Paginated material changes with the same target-intelligence fields. |
| Repository changes | No | Use the Commits tab and Telegram repository stream instead. |
Run get_bbradar_guide in your client for the installed package’s current tool parameters. MCP uses the Pro API, so missing source data can also mean an opportunity or dupe-risk field is absent.
Keep your key safe
- Put the key in the MCP client environment, not prompts
- Do not commit client configuration containing the secret
- Do not paste the key into chat or support messages
- Regenerate immediately if the secret may have leaked
