MCP Hub
Back to servers

GOD MODE INTEL MCP Server

A powerful B2B intelligence MCP server offering over 40 tools for prospect discovery, enrichment, competitive analysis, and automated lead generation.

Tools
41
Updated
Jan 23, 2026

GOD MODE INTEL MCP Server

The Ultimate B2B Intelligence Server for Make.com and AI Automation

Make.com MCP Challenge License: MIT Node.js TypeScript

48+ B2B Intelligence Tools via the Model Context Protocol (MCP) - Built for the Make.com Community Challenge


What is GOD MODE INTEL?

GOD MODE INTEL is a comprehensive Model Context Protocol (MCP) server that provides AI-powered B2B intelligence tools for lead generation, company research, competitive analysis, and sales automation. It integrates seamlessly with Make.com, Claude Desktop, and any MCP-compatible client.

Key Features

  • 48+ Intelligence Tools across 10 specialized categories
  • True MCP Protocol - Full compliance with the Model Context Protocol specification
  • Dual Transport - HTTP/SSE for Make.com + Stdio for Claude Desktop
  • Demo Mode - Test all tools without API costs
  • Apify Backend - Powered by enterprise-grade web scraping infrastructure
  • Vercel-Ready - One-click serverless deployment

Tool Categories

CategoryToolsDescription
Discovery5Find prospects, lookalike companies, and market opportunities
Enrichment3Enrich leads with contact info, company data, and social profiles
LinkedIn3Scrape profiles, analyze content voice, monitor activity
Company Research6Deep company intel, tech stacks, funding, Crunchbase data
Reviews4Aggregate reviews from G2, Trustpilot, Yelp, Google
Competitive Intel5Monitor competitors, analyze ads, gap analysis
Local Business4Google Business Profiles, local SERP, citations
Social Listening3Reddit, Quora, brand mention monitoring
AI-Powered5Lead scoring, outreach generation, buying signals
Pipelines3End-to-end research and prospecting workflows

Complete Tool Reference

Discovery Tools

ToolDescriptionUse Case
find_prospectsFind B2B prospects using Google Maps, LinkedIn, and business databasesLead generation campaigns
find_lookalikesDiscover companies similar to your best customersAccount-based marketing
discover_companiesSearch for companies by industry, size, location, and technologyMarket research
identify_decision_makersFind C-suite executives and key decision makers at target companiesSales targeting
build_target_listCreate filtered, prioritized prospect lists with scoringOutbound campaigns

Enrichment Tools

ToolDescriptionUse Case
enrich_leadAdd email, phone, social profiles, and company data to leadsCRM enrichment
enrich_leads_batchBulk enrichment for up to 100 leads at onceDatabase cleaning
enrich_company_contactsFind all contacts at a specific companyAccount mapping

LinkedIn Tools

ToolDescriptionUse Case
scrape_linkedin_profileExtract profile data, experience, skills, and connectionsSales research
analyze_linkedin_voiceAnalyze a profile's content style and engagement patternsPersonalized outreach
monitor_linkedin_activityTrack profile updates, posts, and job changesTrigger-based selling

Company Research Tools

ToolDescriptionUse Case
research_companyComprehensive company research including financials and techDue diligence
scan_tech_stackIdentify technologies used by a company's websiteCompetitive analysis
get_crunchbase_dataFunding rounds, investors, acquisitions, and key peopleInvestment research
analyze_websiteDeep analysis of company website structure and contentMarket intelligence
extract_job_postingsCurrent job openings indicating growth and prioritiesBuying signals
get_funding_newsRecent funding announcements and press releasesTrigger events

Reviews & Reputation Tools

ToolDescriptionUse Case
scrape_trustpilotCustomer reviews and ratings from TrustpilotReputation analysis
scrape_yelpBusiness reviews and ratings from YelpLocal reputation
scrape_g2_reviewsB2B software reviews from G2 CrowdCompetitive intel
aggregate_reviewsCombine reviews from multiple platformsSentiment analysis

Competitive Intelligence Tools

ToolDescriptionUse Case
monitor_competitorsTrack competitor websites, pricing, and product changesMarket monitoring
scrape_facebook_adsAnalyze competitor Facebook/Meta advertisingAd intelligence
competitive_gap_analysisCompare features, pricing, and positioningStrategy planning
track_pricing_changesMonitor competitor pricing updatesPricing strategy
analyze_market_positioningUnderstand competitor market positioningBrand strategy

Local Business Tools

ToolDescriptionUse Case
scrape_gbpGoogle Business Profile data extractionLocal SEO
track_local_serpMonitor local search rankingsRank tracking
audit_citationsCheck NAP consistency across directoriesCitation management
local_competitor_analysisAnalyze local market competitionLocal strategy

Social Listening Tools

ToolDescriptionUse Case
scrape_redditExtract posts and comments from RedditMarket research
scrape_quoraQuestions and answers from QuoraContent research
monitor_brand_mentionsTrack brand mentions across social platformsPR monitoring

AI-Powered Tools

ToolDescriptionUse Case
score_and_prioritizeAI-powered lead scoring and prioritizationSales efficiency
generate_outreachCreate personalized email and LinkedIn messagesOutbound automation
analyze_buying_signalsDetect purchase intent signalsTiming optimization
predict_deal_probabilityML-based deal closure predictionPipeline management
recommend_next_actionsAI suggestions for prospect engagementSales playbooks

Pipeline Tools

ToolDescriptionUse Case
full_company_researchComplete company intelligence packageAccount research
full_prospect_pipelineEnd-to-end prospect research and outreachSales automation
batch_process_leadsProcess multiple leads through any toolBulk operations

Quick Start

Option 1: Deploy to Vercel (Recommended for Make.com)

# Clone the repository
git clone https://github.com/localhowl/god-mode-intel-mcp-server.git
cd god-mode-intel-mcp-server

# Install dependencies
npm install

# Deploy to Vercel
vercel deploy

# Set your Apify token
vercel env add APIFY_TOKEN

Option 2: Run Locally

# Clone and install
git clone https://github.com/localhowl/god-mode-intel-mcp-server.git
cd god-mode-intel-mcp-server
npm install
npm run build

# Run HTTP server (for Make.com)
npm run start:http

# Or run stdio mode (for Claude Desktop)
npm run start:stdio

Option 3: Use via Apify

The GOD MODE INTEL backend is also available as an Apify Actor:


Make.com Integration

Step 1: Deploy Your MCP Server

Deploy to Vercel or any hosting platform that supports Node.js. Your server URL will be something like:

https://god-mode-intel-mcp.vercel.app

Step 2: Configure Make.com MCP Module

  1. In Make.com, add the MCP module to your scenario
  2. Configure the MCP connection with your server URL
  3. Select the tool you want to use from the 48+ available tools
  4. Configure tool parameters and run your scenario

Step 3: Example Scenario - Lead Generation Pipeline

Trigger (Schedule/Webhook)
    ↓
GOD MODE INTEL: find_prospects
    ↓
Iterator (Process each lead)
    ↓
GOD MODE INTEL: enrich_lead
    ↓
GOD MODE INTEL: generate_outreach
    ↓
Gmail/HubSpot: Send personalized email

Claude Desktop Configuration

Add to your ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "god-mode-intel": {
      "command": "node",
      "args": ["/path/to/god-mode-intel-mcp-server/dist/index.js", "--stdio"],
      "env": {
        "APIFY_TOKEN": "your_apify_token"
      }
    }
  }
}

API Endpoints

EndpointMethodDescription
/GETServer info and status
/toolsGETList all available tools with schemas
/executePOSTExecute a tool directly
/sseGETServer-Sent Events endpoint for MCP protocol
/healthGETHealth check endpoint

Direct Tool Execution

curl -X POST https://your-server.vercel.app/execute \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "find_prospects",
    "arguments": {
      "query": "dentists",
      "location": "Austin, TX",
      "maxResults": 20
    }
  }'

Environment Variables

VariableRequiredDescription
APIFY_TOKENNo*Your Apify API token for real data
PORTNoHTTP server port (default: 3000)

*Without APIFY_TOKEN, the server runs in demo mode with sample data.


Architecture

┌─────────────────────────────────────────────────────────────┐
│                    Make.com / Claude Desktop                 │
└─────────────────────────────────┬───────────────────────────┘
                                  │
                    ┌─────────────▼─────────────┐
                    │   MCP Protocol Layer      │
                    │   (HTTP/SSE or Stdio)     │
                    └─────────────┬─────────────┘
                                  │
              ┌───────────────────▼───────────────────┐
              │      GOD MODE INTEL MCP Server        │
              │   ┌─────────────────────────────┐     │
              │   │    48+ Intelligence Tools   │     │
              │   └─────────────┬───────────────┘     │
              │                 │                      │
              │   ┌─────────────▼───────────────┐     │
              │   │    Tool Router & Executor   │     │
              │   └─────────────┬───────────────┘     │
              └─────────────────┼─────────────────────┘
                                │
                    ┌───────────▼───────────┐
                    │   Apify Actor Backend │
                    └───────────┬───────────┘
                                │
        ┌───────────────────────┼───────────────────────┐
        │           │           │           │           │
   ┌────▼────┐ ┌────▼────┐ ┌────▼────┐ ┌────▼────┐ ┌────▼────┐
   │ Google  │ │LinkedIn │ │   G2    │ │Crunch-  │ │ Apollo  │
   │  Maps   │ │         │ │ Crowd   │ │  base   │ │ Hunter  │
   └─────────┘ └─────────┘ └─────────┘ └─────────┘ └─────────┘

Demo Mode

Run without an APIFY_TOKEN to test all tools with realistic sample data:

# Start in demo mode
npm start

# Test find_prospects
curl -X POST http://localhost:3000/execute \
  -H "Content-Type: application/json" \
  -d '{"tool": "find_prospects", "arguments": {"query": "dentists", "location": "Austin, TX"}}'

Demo mode returns realistic sample responses for all 48+ tools, perfect for:

  • Testing Make.com scenarios before going live
  • Developing integrations without API costs
  • Demonstrating capabilities to stakeholders

Use Cases

Sales & Lead Generation

  • Automate prospect discovery with find_prospects
  • Enrich your CRM with enrich_leads_batch
  • Generate personalized outreach with generate_outreach
  • Score and prioritize leads with score_and_prioritize

Competitive Intelligence

  • Monitor competitor changes with monitor_competitors
  • Analyze their ad strategies with scrape_facebook_ads
  • Identify market gaps with competitive_gap_analysis

Account-Based Marketing

  • Find lookalike accounts with find_lookalikes
  • Map decision makers with identify_decision_makers
  • Research deeply with full_company_research

Local Business Marketing

  • Audit Google Business Profiles with scrape_gbp
  • Track local rankings with track_local_serp
  • Check citation consistency with audit_citations

Development

# Install dependencies
npm install

# Development mode with hot reload
npm run dev

# Build for production
npm run build

# Run tests
npm test

# Type checking
npx tsc --noEmit

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License - see LICENSE for details.


Links


Support


Built with love by LocalHowl for the Make.com MCP Community Challenge.

Reviews

No reviews yet

Sign in to write a review