GenuDo Market Intelligence MCP
Provides tools for searching public Meta ads by query and market, and analyzing competitor ads, including creative mix, messaging, landing pages, and social metadata.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GenuDo Market Intelligence MCPWhat's the market evidence for AI receptionists in Saudi Arabia?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GenuDo Market Intelligence MCP
A shared, evidence-first market-intelligence server for deciding which AI employees GenuDo should build and package across Egypt, Saudi Arabia, and the UAE.
The repository runs as both:
a remote Streamable HTTP MCP at
/mcp, designed for Apify Actor Standby;a local stdio MCP for development and offline client testing.
Architecture
flowchart LR
A["GitHub repository"] --> B["Apify Actor Standby"]
B --> C["Source adapters"]
C --> D["Meta Ads Actor"]
C -. future .-> E["Search, jobs, web, social, pricing, reviews"]
B --> F["Central research store"]
G["ChatGPT / Codex"] --> B
H["Claude"] --> B
I["Other MCP clients"] --> BThe MCP owns taxonomy, normalization, scoring, caching, research history, and evidence retrieval. Source Actors only collect data. This keeps the seven public tools stable as new sources are added.
Related MCP server: muze-mcp
V1 tools
Tool | Purpose | Starts a paid source run? |
| Search public Meta ads by query and market | Yes |
| Research one AI employee category across selected markets | Yes |
| Deep-dive one competitor's ads, messages, creative mix, landing pages, and social metadata | Yes |
| Compare stored category evidence and GenuDo process fit | No |
| Retrieve the ads and advertisers supporting a finding | No |
| Retrieve a saved research run and its methodology | No |
| Show connectivity, roadmap, taxonomy, storage, and recent runs | No |
Every live tool limits result counts. Deep competitor research is opt-in because advertiser and per-ad enrichment costs more.
What the score means
The V1 opportunity-screening score is:
45% GenuDo process fit
30% commercial validation from visible Meta ad activity
25% competitive whitespaceMeta ads show commercial supply, advertiser breadth, localization, creative testing, and campaign persistence. They do not directly prove buyer demand, conversions, advertising spend, or ROAS. The output repeats that caveat. Search demand, jobs, reviews, customer research, and willingness-to-pay evidence belong in later source adapters before an investment decision.
Included taxonomy
The initial taxonomy covers GenuDo's current positions and adjacent expansion candidates:
Sales Agent
Customer Support
Customer Success
Appointment Setter
Receptionist
Lead Qualifier
Follow-up / Reactivation
SDR / BDR
Accounts Receivable / Collections
Order / Fulfillment
HR Onboarding / Employee Operations
Recruiting / Candidate Screening
Procurement / Supplier Operations
IT Service Desk
Claims / Case Processing
Each category includes English and Arabic market-discovery queries. Call list_sources for the canonical IDs and process-fit metadata.
Local setup
Requirements: Node.js 20 or newer.
npm install
cp .env.example .env
npm testPut APIFY_TOKEN in your local .env file or secret manager. Never commit it or paste it into chat.
Start the HTTP server:
npm run devThe endpoints are:
GET http://localhost:3000/health
POST http://localhost:3000/mcpFor local stdio:
npm run build
npm run start:stdioRuntime configuration
Variable | Required | Default | Purpose |
| For local live research | injected by Apify when hosted | Calls source Actors and enables centralized Apify storage |
| No |
| Meta Ads source Actor |
| No |
| Named shared key-value store |
| Recommended outside Apify-managed auth | none | Optional application-level bearer authentication |
| Recommended when binding publicly | none | Comma-separated accepted HTTP hostnames |
| No |
| HTTP port |
| No |
| Bind address; Docker sets |
| Injected by Apify | typically | Apify container/Standby port; takes precedence over |
With APIFY_TOKEN, completed and failed runs are appended to a named Apify dataset while full run records and normalized evidence are saved in the named key-value store. This avoids a shared mutable index when Standby scales to multiple instances. Without the token, development uses .data/research-store.json and live source calls remain unavailable.
Deploy to Apify
The repo includes .actor/actor.json and a multi-stage Docker image. It is configured for Actor Standby and exposes /mcp.
Recommended GitHub deployment:
Create a private Actor in Apify.
Set the source type to Git repository.
Enter this repository URL and use the
mainbranch.For a private GitHub repository, add the read-only deployment key supplied by Apify.
Build the Actor. Apify injects the authenticated run user's
APIFY_TOKEN; do not duplicate an owner token inactor.json.Open Standby, select the successful build, and copy the Standby hostname.
Set
MCP_ALLOWED_HOSTStolocalhost,127.0.0.1,YOUR-STANDBY-HOST(withouthttps://or a path), then restart the Standby run.Confirm
https://YOUR-STANDBY-HOST/health, then usehttps://YOUR-STANDBY-HOST/mcpas the MCP URL.
For development, the Apify CLI can push the same Actor definition:
apify login
apify pushActor Standby keeps the HTTP server warm, scales incoming requests, and bills while a warm run is active. Tune memory, concurrency, and idle timeout in the Standby settings after observing real usage.
Authentication choices
Choose one deliberate access model:
Apify-managed private access: keep the Actor private and initially connect with an authenticated Apify token. For team use, create a dedicated GenuDo service user/account instead of distributing an owner-level token.
Application bearer access: make the endpoint reachable and set a strong
MCP_BEARER_TOKENin Apify secrets.OAuth gateway: place a team identity gateway in front of the Actor later when per-user revocation and audit are required.
Do not distribute GenuDo's owner-level APIFY_TOKEN to team devices. That token belongs only in the hosted server environment.
Connect Codex / ChatGPT Desktop
Store the team bearer value in each device's environment, not in shell history:
export GENUDO_INTELLIGENCE_TOKEN="..."
codex mcp add genudo-intelligence \
--url https://YOUR-STANDBY-HOST/mcp \
--bearer-token-env-var GENUDO_INTELLIGENCE_TOKENOr use Settings → MCP servers → Add server → Streamable HTTP, then restart the client after saving.
For an unauthenticated development endpoint, omit --bearer-token-env-var.
Connect Claude Code
claude mcp add --transport http --scope user \
genudo-intelligence https://YOUR-STANDBY-HOST/mcp \
--header "Authorization: Bearer ${GENUDO_INTELLIGENCE_TOKEN}"For team-shared Claude project configuration, prefer environment-variable expansion in .mcp.json so the secret itself is never committed:
{
"mcpServers": {
"genudo-intelligence": {
"type": "http",
"url": "https://YOUR-STANDBY-HOST/mcp",
"headers": {
"Authorization": "Bearer ${GENUDO_INTELLIGENCE_TOKEN}"
}
}
}
}Adding the next source
Implement a new adapter under src/sources, return normalized evidence, and keep source-specific fields out of the stable tools. Planned adapters include:
search_google
search_jobs
research_linkedin
research_instagram
scrape_competitor_website
research_pricing
research_reviewsThe scoring layer should only label a metric “demand” after direct demand evidence is connected.
Verification
npm run check
npm test
docker build -t genudo-market-intelligence-mcp .Tests validate Meta URL generation, Arabic normalization, supply metrics, and the full seven-tool MCP manifest.
Security and data handling
Secrets are read only from the runtime environment.
Health and source-status outputs never include token values.
Raw public-source records are stored for auditability but omitted from normal MCP responses.
Evidence retrieval is capped and filterable to avoid flooding model context.
Only public Meta Ad Library material should be collected, subject to applicable laws and platform terms.
Use a private repository and least-privilege deployment credentials until the service is ready for broader use.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAquality-maintenanceEnables AI-powered analysis, management, and optimization of Meta advertising campaigns across Facebook and Instagram, including performance insights, budget optimization, and creative testing.Last updated33
- AlicenseAqualityDmaintenanceProvides Meta and Google Ads intelligence for AI assistants, enabling users to analyze performance, track competitors, and manage ad campaigns through natural language. It features 17 tools for generating creative concepts, scraping competitor ads, and performing deep account-level analysis.Last updated17MIT
- Flicense-qualityCmaintenanceSearches and analyzes competitor ads and content across Meta, Google, Instagram, TikTok, and YouTube with AI-powered creative analysis and cross-platform brand discovery.Last updated1
- Alicense-qualityAmaintenanceManage ad campaigns across Meta, Google, and TikTok, create campaigns, analyze performance, spy on competitors, and generate AI creatives.Last updated10MIT
Related MCP Connectors
Create, launch & analyze ad campaigns, spy on competitors - Google, Meta, TikTok, LinkedIn & more.
AI ad studio: competitor ad research, video + image ads, social publishing, campaigns. 262 tools.
Search Meta, Google Ads, LinkedIn, and TikTok ad libraries plus creative analysis via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahmedtawfeeq1/genudo-market-intelligence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server