GOD MODE INTEL MCP Server

GOD MODE INTEL MCP Server

A comprehensive B2B intelligence server providing over 48 tools for lead generation, company research, and sales automation via the Model Context Protocol. It enables AI-powered prospect discovery, enrichment, and competitive analysis through seamless integrations with Make.com, Claude Desktop, and Apify.

Category
访问服务器

README

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

Category Tools Description
Discovery 5 Find prospects, lookalike companies, and market opportunities
Enrichment 3 Enrich leads with contact info, company data, and social profiles
LinkedIn 3 Scrape profiles, analyze content voice, monitor activity
Company Research 6 Deep company intel, tech stacks, funding, Crunchbase data
Reviews 4 Aggregate reviews from G2, Trustpilot, Yelp, Google
Competitive Intel 5 Monitor competitors, analyze ads, gap analysis
Local Business 4 Google Business Profiles, local SERP, citations
Social Listening 3 Reddit, Quora, brand mention monitoring
AI-Powered 5 Lead scoring, outreach generation, buying signals
Pipelines 3 End-to-end research and prospecting workflows

Complete Tool Reference

Discovery Tools

Tool Description Use Case
find_prospects Find B2B prospects using Google Maps, LinkedIn, and business databases Lead generation campaigns
find_lookalikes Discover companies similar to your best customers Account-based marketing
discover_companies Search for companies by industry, size, location, and technology Market research
identify_decision_makers Find C-suite executives and key decision makers at target companies Sales targeting
build_target_list Create filtered, prioritized prospect lists with scoring Outbound campaigns

Enrichment Tools

Tool Description Use Case
enrich_lead Add email, phone, social profiles, and company data to leads CRM enrichment
enrich_leads_batch Bulk enrichment for up to 100 leads at once Database cleaning
enrich_company_contacts Find all contacts at a specific company Account mapping

LinkedIn Tools

Tool Description Use Case
scrape_linkedin_profile Extract profile data, experience, skills, and connections Sales research
analyze_linkedin_voice Analyze a profile's content style and engagement patterns Personalized outreach
monitor_linkedin_activity Track profile updates, posts, and job changes Trigger-based selling

Company Research Tools

Tool Description Use Case
research_company Comprehensive company research including financials and tech Due diligence
scan_tech_stack Identify technologies used by a company's website Competitive analysis
get_crunchbase_data Funding rounds, investors, acquisitions, and key people Investment research
analyze_website Deep analysis of company website structure and content Market intelligence
extract_job_postings Current job openings indicating growth and priorities Buying signals
get_funding_news Recent funding announcements and press releases Trigger events

Reviews & Reputation Tools

Tool Description Use Case
scrape_trustpilot Customer reviews and ratings from Trustpilot Reputation analysis
scrape_yelp Business reviews and ratings from Yelp Local reputation
scrape_g2_reviews B2B software reviews from G2 Crowd Competitive intel
aggregate_reviews Combine reviews from multiple platforms Sentiment analysis

Competitive Intelligence Tools

Tool Description Use Case
monitor_competitors Track competitor websites, pricing, and product changes Market monitoring
scrape_facebook_ads Analyze competitor Facebook/Meta advertising Ad intelligence
competitive_gap_analysis Compare features, pricing, and positioning Strategy planning
track_pricing_changes Monitor competitor pricing updates Pricing strategy
analyze_market_positioning Understand competitor market positioning Brand strategy

Local Business Tools

Tool Description Use Case
scrape_gbp Google Business Profile data extraction Local SEO
track_local_serp Monitor local search rankings Rank tracking
audit_citations Check NAP consistency across directories Citation management
local_competitor_analysis Analyze local market competition Local strategy

Social Listening Tools

Tool Description Use Case
scrape_reddit Extract posts and comments from Reddit Market research
scrape_quora Questions and answers from Quora Content research
monitor_brand_mentions Track brand mentions across social platforms PR monitoring

AI-Powered Tools

Tool Description Use Case
score_and_prioritize AI-powered lead scoring and prioritization Sales efficiency
generate_outreach Create personalized email and LinkedIn messages Outbound automation
analyze_buying_signals Detect purchase intent signals Timing optimization
predict_deal_probability ML-based deal closure prediction Pipeline management
recommend_next_actions AI suggestions for prospect engagement Sales playbooks

Pipeline Tools

Tool Description Use Case
full_company_research Complete company intelligence package Account research
full_prospect_pipeline End-to-end prospect research and outreach Sales automation
batch_process_leads Process multiple leads through any tool Bulk 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

Endpoint Method Description
/ GET Server info and status
/tools GET List all available tools with schemas
/execute POST Execute a tool directly
/sse GET Server-Sent Events endpoint for MCP protocol
/health GET Health 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

Variable Required Description
APIFY_TOKEN No* Your Apify API token for real data
PORT No HTTP 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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选