The BolideAI MCP is a multi-functional server integrated with AI services, providing marketing automation, content generation, research, and project management tools to help developers and marketers optimize their workflows.
2 points
6.0K

Installation

Copy the following command to your Client for configuration
Note: Your key is sensitive information, do not share it with anyone.

๐Ÿš€ BolideAI MCP

BolideAI MCP is a comprehensive ModelContextProtocol (MCP) server that offers tools for marketing automation, content generation, research, and project management. It integrates with various AI services to streamline workflows for developers and marketers.

npm version License: MIT

โœจ Features

  • ๐Ÿš€ Project Scaffolding: Create marketing project directories and structures.
  • ๐Ÿ“ฑ Marketing Automation: Capture screenshots and videos using the companion app.
  • ๐Ÿค– AI-Powered Content Generation: Generate social media posts using Gemini AI.
  • ๐Ÿ” Research Tools: Conduct comprehensive research using Perplexity AI and OpenAI.
  • ๐Ÿ› ๏ธ Diagnostic Tools: Perform system validation and troubleshooting.

๐Ÿš€ Quick Start

Quick Start (NPM Package)

For quick testing without local builds:

Installation

npm install -g @bolide-ai/mcp

Or use with npx (recommended):

npx --package=@bolide-ai/mcp bolide-ai-mcp

Configuration

Configure your MCP client with the following:

{
  "mcpServers": {
    "BolideAI": {
      "command": "npx --package=@bolide-ai/mcp bolide-ai-mcp",
      "env": {
        "BOLIDEAI_API_KEY": "your-api-key"
      }
    }
  }
}

Development Setup (Local Build)

For development or local builds, follow these detailed steps:

1. Install Prerequisites

Install Node.js 22+

# Download and install from https://nodejs.org/en/download

Clone the repositories

git clone https://github.com/Bolide-AI/mcp

2. Build the MCP Server

# In the directory of the cloned repository
npm install && npm run build

4. Configure MCP in Cursor

  1. In the Cursor menu, select Cursor โ†’ Settings โ†’ Cursor Settings.
  2. In the opened window, select Tools & Integrations.
  3. Click New MCP Server.
  4. Insert the MCP server configuration, replacing:
    • <PATH TO MCP DIRECTORY> with the path to the MCP directory.
    • <BOLIDEAI_API_TOKEN> with your BolideAI key (can be generated at here).
{
  "mcpServers": {
    "BolideAI-dev": {
      "type": "stdio",
      "command": "node",
      "args": [
        "--inspect=9999",
        "<PATH TO MCP DIRECTORY>/build/index.js"
      ],
      "env": {
        "BOLIDEAI_MCP_DEBUG": "true",
        "BOLIDEAI_API_TOKEN": "<your-api-key-here>"
      }
    }
  }
}
  1. Make sure the workspace is open in Cursor.
  2. Launch the application in the simulator.

๐Ÿ’ป Usage Examples

Basic Usage

// Create a project
scaffold_bolide_ai_project()

// Perform research
use_openai_deep_research({ 
  query: "AI trends in marketing automation 2024" 
})

// Analyze screencast content
analyze_screencasts({ 
  screencastNames: ["demo.mov"],
  force: false
})

๐Ÿ”ง Technical Details

Environment Variables

  • BOLIDEAI_API_TOKEN: Required for research tools.
  • BOLIDEAI_API_URL: Optional, defaults to https://bolide.ai/api.

Tool Configuration

  • BOLIDEAI_MCP_DEBUG=true: Enable diagnostic tools and detailed logging.
  • Tool Groups: Enable specific tool categories (see Tool Options).
  • Individual Tools: Enable specific tools only (see Tool Options).

๐Ÿ“š Documentation

Available Tools

BolideAI MCP provides 10 tools across 5 categories:

๐Ÿš€ Project Scaffolding

  • scaffold_bolide_ai_project: Create the bolide.ai project directory structure.

๐Ÿ“ฑ Utility Tools

  • check_companion_app_status: Check the companion app running status.
  • launch_companion_app: Launch the Companion App for marketing capture.
  • stop_companion_app: Stop running companion app instances.
  • install_brew_and_ffmpeg: Install the Homebrew package manager and FFmpeg.

๐Ÿค– Content Generation

  • analyze_screencasts: Analyze screencast content using Gemini AI.
  • generate_gif: Convert screencast segments to GIFs.
  • enhance_audio: Extract and enhance audio from screencasts using ElevenLabs.

๐Ÿ” Research Tools

  • use_perplexity: Conduct research using Perplexity AI.
  • use_openai_deep_research: Perform deep research using OpenAI o4 - mini - deep - research.

๐Ÿ› ๏ธ Diagnostic Tools

  • diagnostic: Perform system environment validation (debug mode only).

Research Tools

Perplexity AI Research

Perform quick research and information gathering:

use_perplexity({ 
  query: "Latest trends in AI marketing automation",
  search_mode: "web" // or "academic"
})

OpenAI Deep Research

Conduct comprehensive research with query enrichment:

use_openai_deep_research({ 
  query: "Economic impact of renewable energy adoption" 
})

The deep research tool:

  1. Enriches your query using GPT - 4.1 with detailed research instructions.
  2. Researches using o4 - mini - deep - research with web search and code interpreter.
  3. Returns both enriched instructions and comprehensive findings.

Common Workflows

Complete Marketing Content Creation

  1. Set up project structure:
    scaffold_bolide_ai_project()
    
  2. Check app status and capture content:
    check_companion_app_status()
    launch_companion_app()
    
  3. Enhance audio quality:
    enhance_audio({ 
      screencastNames: ["demo.mov"]
    })
    

Research Workflow

  1. Quick research:
    use_perplexity({ 
      query: "Your research question",
      search_mode: "web"
    })
    
  2. Deep research:
    use_openai_deep_research({ 
      query: "Complex research topic requiring comprehensive analysis"
    })
    

Configuration Options

Selective Tool Registration

Enable only the tools you need to optimize performance:

{
  "env": {
    "BOLIDEAI_MCP_GROUP_RESEARCH": "true",
    "BOLIDEAI_MCP_GROUP_CONTENT_GENERATORS": "true",
    "BOLIDEAI_API_TOKEN": "your-api-key"
  }
}

Available Tool Groups

  • BOLIDEAI_MCP_GROUP_LAUNCH: Launch and utility tools.
  • BOLIDEAI_MCP_GROUP_SCAFFOLDING: Project scaffolding tools.
  • BOLIDEAI_MCP_GROUP_CONTENT_GENERATORS: Content generation tools.
  • BOLIDEAI_MCP_GROUP_RESEARCH: Research and information gathering tools.
  • BOLIDEAI_MCP_GROUP_DIAGNOSTICS: Diagnostic tools.

System Requirements

Dependencies

  • Node.js 22+
  • ffmpeg (required for GIF generation tools)
  • Companion App

Troubleshooting

Enable Debug Mode

{
  "env": {
    "BOLIDEAI_MCP_DEBUG": "true"
  }
}

Run Diagnostics

diagnostic() // Available in debug mode

Common Issues

  1. Missing API Keys: Ensure all required environment variables are set.
  2. ffmpeg Not Found: Install ffmpeg using brew install ffmpeg.
  3. Permission Issues: Check file system permissions for project directories.

Contributing

We welcome contributions! Please see our Contributing Guide for details.

๐Ÿ“„ License

MIT ยฉ Data Route LLC

Support


BolideAI MCP - Streamline your marketing automation and research workflows with AI - powered tools.

Alternatives

M
MCP
The Microsoft official MCP server provides search and access functions for the latest Microsoft technical documentation for AI assistants
9.7K
5 points
A
Aderyn
Aderyn is an open - source Solidity smart contract static analysis tool written in Rust, which helps developers and security researchers discover vulnerabilities in Solidity code. It supports Foundry and Hardhat projects, can generate reports in multiple formats, and provides a VSCode extension.
Rust
5.2K
5 points
D
Devtools Debugger MCP
The Node.js Debugger MCP server provides complete debugging capabilities based on the Chrome DevTools protocol, including breakpoint setting, stepping execution, variable inspection, and expression evaluation.
TypeScript
5.6K
4 points
S
Scrapling
Scrapling is an adaptive web scraping library that can automatically learn website changes and re - locate elements. It supports multiple scraping methods and AI integration, providing high - performance parsing and a developer - friendly experience.
Python
8.4K
5 points
M
Mcpjungle
MCPJungle is a self-hosted MCP gateway used to centrally manage and proxy multiple MCP servers, providing a unified tool access interface for AI agents.
Go
0
4.5 points
C
Cipher
Cipher is an open-source memory layer framework designed for programming AI agents. It integrates with various IDEs and AI coding assistants through the MCP protocol, providing core functions such as automatic memory generation, team memory sharing, and dual-system memory management.
TypeScript
0
5 points
N
Nexus
Nexus is an AI tool aggregation gateway that supports connecting multiple MCP servers and LLM providers, providing tool search, execution, and model routing functions through a unified endpoint, and supporting security authentication and rate limiting.
Rust
0
4 points
S
Shadcn Ui MCP Server
An MCP server that provides shadcn/ui component integration for AI workflows, supporting React, Svelte, and Vue frameworks. It includes functions for accessing component source code, examples, and metadata.
TypeScript
12.3K
5 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
15.0K
4.5 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
25.0K
5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
45.5K
4.3 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
16.1K
4.3 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
45.7K
4.5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
20.6K
5 points
C
Context7
Context7 MCP is a service that provides real-time, version-specific documentation and code examples for AI programming assistants. It is directly integrated into prompts through the Model Context Protocol to solve the problem of LLMs using outdated information.
TypeScript
65.8K
4.7 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
31.2K
4.8 points